Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created February 27, 2014 02:38
Show Gist options
  • Save libo1106/9243272 to your computer and use it in GitHub Desktop.
Save libo1106/9243272 to your computer and use it in GitHub Desktop.
all.min.js
(function(){
var path = '/js/'
var scripts = [
'jQuery.min.js',
'common.js'
];
var temp = [];
for (var i = 0; i < scripts.length; i ++) {
temp.push('<script src="' + path + scripts[i] +'"><\/script>');
}
document.write(temp.join(''));
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment