Skip to content

Instantly share code, notes, and snippets.

@arapehl
arapehl / gist:1114622
Created July 29, 2011 20:10 — forked from rgrove/gist:1114618
Using YUI group configs to combo handle custom modules
YUI({
groups: {
'my-group': {
comboBase: 'http://example.com/combo?',
combine : true,
root : 'build/',
modules: {
/* custom module definitions */
}
var APP = (function(window) {
function parseInt(str, radix) {
radix = radix || 10;
return window.parseInt(str, radix);
}
return {
// Sub-objects and methods that
// use the modified parseInt...
//