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
/
Ext.html
diff --git
a/docs/source/Ext.html
b/docs/source/Ext.html
index
5f3f7b7
..
ebc3d5a
100644
(file)
--- a/
docs/source/Ext.html
+++ b/
docs/source/Ext.html
@@
-7,12
+7,11
@@
</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
*/
-
// for old browsers
window.undefined = window.undefined;
// for old browsers
window.undefined = window.undefined;
@@
-27,7
+26,12
@@
Ext = {
* The version of the framework
* @type String
*/
* The version of the framework
* @type String
*/
- version : '3.2.0'
+ version : '3.2.1',
+ versionDetail : {
+ major: 3,
+ minor: 2,
+ patch: 1
+ }
};
<div id="method-Ext-apply"></div>/**
};
<div id="method-Ext-apply"></div>/**
@@
-235,7
+239,7
@@
MyGridPanel = Ext.extend(Ext.grid.GridPanel, {
var oc = Object.prototype.constructor;
return function(sb, sp, overrides){
var oc = Object.prototype.constructor;
return function(sb, sp, overrides){
- if(
Ext.isObject(sp)
){
+ if(
typeof sp == 'object'
){
overrides = sp;
sp = sb;
sb = overrides.constructor != oc ? overrides.constructor : function(){sp.apply(this, arguments);};
overrides = sp;
sp = sb;
sb = overrides.constructor != oc ? overrides.constructor : function(){sp.apply(this, arguments);};
@@
-483,7
+487,7
@@
Ext.urlDecode("foo=1&bar=2&bar=3&bar=4", false); // returns {foo: "1", bar: ["2"
if(Ext.isIterable(obj)){
Ext.each(obj, fn, scope);
return;
if(Ext.isIterable(obj)){
Ext.each(obj, fn, scope);
return;
- }else if(
Ext.isObject(obj)
){
+ }else if(
typeof obj == 'object'
){
for(var prop in obj){
if(obj.hasOwnProperty(prop)){
if(fn.call(scope || obj, prop, obj[prop], obj) === false){
for(var prop in obj){
if(obj.hasOwnProperty(prop)){
if(fn.call(scope || obj, prop, obj[prop], obj) === false){
@@
-524,7
+528,7
@@
function(el){
if (el.dom){
return el.dom;
} else {
if (el.dom){
return el.dom;
} else {
- if (
Ext.isString(el)
) {
+ if (
typeof el == 'string'
) {
var e = DOC.getElementById(el);
// IE returns elements with the 'name' and 'id' attribute.
// we do a strict check to return the element with only the id attribute
var e = DOC.getElementById(el);
// IE returns elements with the 'name' and 'id' attribute.
// we do a strict check to return the element with only the id attribute