Created
December 14, 2015 08:27
-
-
Save edtoken/2e7a5a3f148f6195d57a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function loadFromGrunt(items) { | |
| var html = ''; | |
| for (var i in items) { | |
| html += '<script src="/' + items[i] + '"><\/script>'; | |
| } | |
| document.write(html); | |
| } | |
| loadFromGrunt([]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment