Skip to content

Instantly share code, notes, and snippets.

@rgrove
Created May 11, 2011 00:51
Show Gist options
  • Save rgrove/965702 to your computer and use it in GitHub Desktop.
Save rgrove/965702 to your computer and use it in GitHub Desktop.
Global YUI config
var YUI = require('yui3').YUI;
YUI.GlobalConfig = {
groups: {
yi: {
modules: {
"Yi.lang": {
fullpath: '/Volumes/Private/johnnyluu/Projects/yi/lib/lang.js'
},
"Yi.workflow": {
fullpath: '/Volumes/Private/johnnyluu/Projects/yi/lib/workflow.js',
requires: ['base', 'Yi.lang']
}
}
}
}
};
YUI().useSync('Yi.workflow', function (Y) {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment