git.ithinksw.org
/
extjs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade to ExtJS 3.2.1 - Released 04/27/2010
[extjs.git]
/
docs
/
source
/
Element.fx.html
diff --git
a/docs/source/Element.fx.html
b/docs/source/Element.fx.html
index
9a7e124
..
1bef778
100644
(file)
--- a/
docs/source/Element.fx.html
+++ b/
docs/source/Element.fx.html
@@
-7,7
+7,7
@@
</head>
<body onload="prettyPrint();">
<pre class="prettyprint lang-js">/*!
</head>
<body onload="prettyPrint();">
<pre class="prettyprint lang-js">/*!
- * Ext JS Library 3.2.
0
+ * Ext JS Library 3.2.
1
* Copyright(c) 2006-2010 Ext JS, Inc.
* licensing@extjs.com
* http://www.extjs.com/license
* Copyright(c) 2006-2010 Ext JS, Inc.
* licensing@extjs.com
* http://www.extjs.com/license
@@
-223,7
+223,7
@@
el.animate(
// private legacy anim prep
preanim : function(a, i){
// private legacy anim prep
preanim : function(a, i){
- return !a[i] ? false : (
Ext.isObject(a[i])
? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
+ return !a[i] ? false : (
typeof a[i] == 'object'
? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
},
<div id="method-Ext.Element-isVisible"></div>/**
},
<div id="method-Ext.Element-isVisible"></div>/**
@@
-246,7
+246,7
@@
el.animate(
dom = me.dom;
// hideMode string override
dom = me.dom;
// hideMode string override
- if (
Ext.isString(animate)
){
+ if (
typeof animate == 'string'
){
isDisplay = animate == DISPLAY;
isVisible = animate == VISIBILITY;
isOffsets = animate == OFFSETS;
isDisplay = animate == DISPLAY;
isVisible = animate == VISIBILITY;
isOffsets = animate == OFFSETS;
@@
-339,7
+339,7
@@
el.animate(
*/
hide : function(animate){
// hideMode override
*/
hide : function(animate){
// hideMode override
- if (
Ext.isString(animate)
){
+ if (
typeof animate == 'string'
){
this.setVisible(false, animate);
return this;
}
this.setVisible(false, animate);
return this;
}
@@
-354,7
+354,7
@@
el.animate(
*/
show : function(animate){
// hideMode override
*/
show : function(animate){
// hideMode override
- if (
Ext.isString(animate)
){
+ if (
typeof animate == 'string'
){
this.setVisible(true, animate);
return this;
}
this.setVisible(true, animate);
return this;
}
@@
-362,6
+362,7
@@
el.animate(
return this;
}
};
return this;
}
};
-}());</pre>
+}());
+</pre>
</body>
</html>
\ No newline at end of file
</body>
</html>
\ No newline at end of file