Skip to content

Commit

Permalink
merge min
Browse files Browse the repository at this point in the history
  • Loading branch information
msweeney committed Feb 3, 2011
2 parents ed09628 + e270ac1 commit b586e8b
Show file tree
Hide file tree
Showing 97 changed files with 4,800 additions and 909 deletions.
2 changes: 1 addition & 1 deletion build/async-queue/async-queue-debug.js
Expand Up @@ -96,7 +96,7 @@ Y.extend(Queue, Y.EventTarget, {
* @protected
*/
_init : function () {
Y.EventTarget.call(this, { emitFacade: true });
Y.EventTarget.call(this, { prefix: 'queue', emitFacade: true });

this._q = [];

Expand Down
2 changes: 1 addition & 1 deletion build/async-queue/async-queue-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/async-queue/async-queue.js
Expand Up @@ -96,7 +96,7 @@ Y.extend(Queue, Y.EventTarget, {
* @protected
*/
_init : function () {
Y.EventTarget.call(this, { emitFacade: true });
Y.EventTarget.call(this, { prefix: 'queue', emitFacade: true });

this._q = [];

Expand Down
2 changes: 1 addition & 1 deletion build/base/base-base-debug.js
Expand Up @@ -327,10 +327,10 @@ YUI.add('base-base', function(Y) {
* @protected
*/
_defDestroyFn : function(e) {
this._destroyHierarchy();
if (this._destroyPlugins) {
this._destroyPlugins();
}
this._destroyHierarchy();
this._set(DESTROYED, true);
},

Expand Down
2 changes: 1 addition & 1 deletion build/base/base-base-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/base/base-base.js
Expand Up @@ -324,10 +324,10 @@ YUI.add('base-base', function(Y) {
* @protected
*/
_defDestroyFn : function(e) {
this._destroyHierarchy();
if (this._destroyPlugins) {
this._destroyPlugins();
}
this._destroyHierarchy();
this._set(DESTROYED, true);
},

Expand Down
4 changes: 2 additions & 2 deletions build/base/base-debug.js
Expand Up @@ -327,10 +327,10 @@ YUI.add('base-base', function(Y) {
* @protected
*/
_defDestroyFn : function(e) {
this._destroyHierarchy();
if (this._destroyPlugins) {
this._destroyPlugins();
}
this._destroyHierarchy();
this._set(DESTROYED, true);
},

Expand Down Expand Up @@ -925,5 +925,5 @@ YUI.add('base-build', function(Y) {
}, '@VERSION@' ,{requires:['base-base']});


YUI.add('base', function(Y){}, '@VERSION@' ,{after:['attribute-complex'], use:['base-base', 'base-pluginhost', 'base-build']});
YUI.add('base', function(Y){}, '@VERSION@' ,{use:['base-base', 'base-pluginhost', 'base-build'], after:['attribute-complex']});

0 comments on commit b586e8b

Please sign in to comment.