X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Ext.html diff --git a/docs/source/Ext.html b/docs/source/Ext.html index e526ac58..6bb046d7 100644 --- a/docs/source/Ext.html +++ b/docs/source/Ext.html @@ -22,7 +22,7 @@ (function() { var global = this, objectPrototype = Object.prototype, - toString = Object.prototype.toString, + toString = objectPrototype.toString, enumerables = true, enumerablesTest = { toString: 1 }, i; @@ -97,7 +97,6 @@ /** * Copies all the properties of config to object if they don't already exist. - * @function * @param {Object} object The receiver of the properties * @param {Object} config The source of the properties * @return {Object} returns obj @@ -391,7 +390,8 @@ */ isObject: (toString.call(null) === '[object Object]') ? function(value) { - return value !== null && value !== undefined && toString.call(value) === '[object Object]' && value.nodeType === undefined; + // check ownerDocument here as well to exclude DOM nodes + return value !== null && value !== undefined && toString.call(value) === '[object Object]' && value.ownerDocument === undefined; } : function(value) { return toString.call(value) === '[object Object]'; @@ -565,7 +565,7 @@ var i = 0; do { - uniqueGlobalNamespace = 'ExtSandbox' + (++i); + uniqueGlobalNamespace = 'ExtBox' + (++i); } while (Ext.global[uniqueGlobalNamespace] !== undefined); Ext.global[uniqueGlobalNamespace] = Ext; @@ -594,6 +594,7 @@ * Old alias to {@link Ext#typeOf} * @deprecated 4.0.0 Use {@link Ext#typeOf} instead * @method + * @alias Ext#typeOf */ Ext.type = Ext.typeOf;