Skip to content

Commit

Permalink
Merge commit 'dc3c9e2e575e0bc55332dc136cafe7db73e399b6'
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Aug 26, 2011
2 parents 0b34d8c + dc3c9e2 commit b19f55c
Show file tree
Hide file tree
Showing 1,892 changed files with 80,557 additions and 230,929 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "lib/yui3"]
path = lib/yui3
url = git://github.com/liferay/yui3.git
[submodule "lib/ace"]
path = lib/ace
url = git://github.com/ajaxorg/ace.git
7 changes: 6 additions & 1 deletion build/anim-base/anim-base-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,12 @@ YUI.add('anim-base', function(Y) {
*/
node: {
setter: function(node) {
node = Y.one(node);
if (node) {
if (typeof node == 'string' || node.nodeType) {
node = Y.one(node);
}
}

this._node = node;
if (!node) {
Y.log(node + ' is not a valid node', 'warn', 'Anim');
Expand Down
2 changes: 1 addition & 1 deletion build/anim-base/anim-base-min.js

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

7 changes: 6 additions & 1 deletion build/anim-base/anim-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,12 @@ YUI.add('anim-base', function(Y) {
*/
node: {
setter: function(node) {
node = Y.one(node);
if (node) {
if (typeof node == 'string' || node.nodeType) {
node = Y.one(node);
}
}

this._node = node;
if (!node) {
}
Expand Down
9 changes: 7 additions & 2 deletions build/anim/anim-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,12 @@ YUI.add('anim-base', function(Y) {
*/
node: {
setter: function(node) {
node = Y.one(node);
if (node) {
if (typeof node == 'string' || node.nodeType) {
node = Y.one(node);
}
}

this._node = node;
if (!node) {
Y.log(node + ' is not a valid node', 'warn', 'Anim');
Expand Down Expand Up @@ -1211,5 +1216,5 @@ Y.Anim.behaviors.xy = {
}, '3.4.0' ,{requires:['anim-base', 'node-screen']});


YUI.add('anim', function(Y){}, '3.4.0' ,{skinnable:false, use:['anim-base', 'anim-color', 'anim-curve', 'anim-easing', 'anim-node-plugin', 'anim-scroll', 'anim-xy']});
YUI.add('anim', function(Y){}, '3.4.0' ,{use:['anim-base', 'anim-color', 'anim-curve', 'anim-easing', 'anim-node-plugin', 'anim-scroll', 'anim-xy'], skinnable:false});

Loading

0 comments on commit b19f55c

Please sign in to comment.