Skip to content

Instantly share code, notes, and snippets.

@joefiorini
Created March 20, 2014 01:17
Show Gist options
  • Save joefiorini/9655404 to your computer and use it in GitHub Desktop.
Save joefiorini/9655404 to your computer and use it in GitHub Desktop.
function loadScript(module) {
var head = document.getElementsByTagName("head")[0];
var script = document.createElement("script");
return new RSVP.Promise(function(resolve, reject) {
script.language = "javascript";
script.src = module.url;
script.onload = function() {
resolve(module);
};
head.appendChild(script);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment