Skip to content

Instantly share code, notes, and snippets.

@mvaz
Created November 26, 2014 16:54
Show Gist options
  • Save mvaz/46303541c90a29dff899 to your computer and use it in GitHub Desktop.
Save mvaz/46303541c90a29dff899 to your computer and use it in GitHub Desktop.
Only load JS once
var libs = {};
function getLib(lib){
if (!libs[lib]){
$.getScript(lib, function() {
libs[lib] = 1;
});
}
}
@mvaz
Copy link
Author

mvaz commented Nov 26, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment