yui-init.js revision 42a7425dbf576c444041fb298de4f08bdda511b1
/**
* The YUI module contains the components required for building the YUI seed file.
* This includes the script loading mechanism, a simple queue, and the core utilities for the library.
* @module yui
* @submodule yui-base
*/
(function() {
// // var min = ['yui-base'],
// var core, C = Y.config, mods = YUI.Env.mods, extras, i;
// // apply the minimal required functionality
// // Y.use.apply(Y, min);
// if (C.core) {
// core = C.core;
// } else {
// core = [];
// extras = ['get', 'loader', 'yui-log', 'yui-later', 'yui-throttle'];
// for (i=0; i<extras.length; i++) {
// if (mods[extras[i]]) {
// core.push(extras[i]);
// }
// }
// }
// Y.use.apply(Y, core);
// Y.log(Y.id + ' initialized', 'info', 'yui');
})();