Skip to content

Commit

Permalink
Seed and Loader
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Sep 12, 2012
1 parent afe7af0 commit e849dd3
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions build/loader-base/loader-base-coverage.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/loader-base/loader-base-debug.js
Expand Up @@ -2376,7 +2376,7 @@ Y.log('Undefined module: ' + mname + ', matched a pattern: ' +
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/loader-base/loader-base-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/loader-base/loader-base.js
Expand Up @@ -2348,7 +2348,7 @@ Y.Loader.prototype = {
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/loader/loader-debug.js
Expand Up @@ -2376,7 +2376,7 @@ Y.log('Undefined module: ' + mname + ', matched a pattern: ' +
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/loader/loader-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/loader/loader.js
Expand Up @@ -2348,7 +2348,7 @@ Y.Loader.prototype = {
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/yui-nodejs/yui-nodejs-debug.js
Expand Up @@ -7109,7 +7109,7 @@ Y.log('Undefined module: ' + mname + ', matched a pattern: ' +
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/yui-nodejs/yui-nodejs-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/yui-nodejs/yui-nodejs.js
Expand Up @@ -7051,7 +7051,7 @@ Y.Loader.prototype = {
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/yui/yui-debug.js
Expand Up @@ -8093,7 +8093,7 @@ Y.log('Undefined module: ' + mname + ', matched a pattern: ' +
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/yui/yui-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/yui/yui.js
Expand Up @@ -8028,7 +8028,7 @@ Y.Loader.prototype = {
for (o = 0; o < deps.length; o++) {
if (!self.inserted[deps[o]]) {
//We wouldn't be to this point without the module being here
mods[deps[o]] = deps[0];
mods[deps[o]] = deps[o];
}
}
}
Expand Down

0 comments on commit e849dd3

Please sign in to comment.