Skip to content

Instantly share code, notes, and snippets.

@sergi
Created October 26, 2010 15:05
Show Gist options
  • Save sergi/647062 to your computer and use it in GitHub Desktop.
Save sergi/647062 to your computer and use it in GitHub Desktop.
YUI Loader example
YUI({
debug: true,
groups: {
app: {
combine: false,
base: "src/",
modules: {
module1: {
path: "module1.js",
requires: ["module2"]
},
module2: {
path: "module2.js",
}
}
}
}
}).use("module1", "module2", function(Y) {
//JS Code
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment