X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..ddde20c4d4ac6a8d53de079761155de813845b3c:/docs/source/Ext.html diff --git a/docs/source/Ext.html b/docs/source/Ext.html index fb6e70b5..5f3f7b77 100644 --- a/docs/source/Ext.html +++ b/docs/source/Ext.html @@ -1,16 +1,22 @@ - -
- -+ + + ++ \ No newline at end of fileThe source code + + + + +/*! + * Ext JS Library 3.2.0 + * Copyright(c) 2006-2010 Ext JS, Inc. + * licensing@extjs.com + * http://www.extjs.com/license + */ + // for old browsers window.undefined = window.undefined; -/** +/** * @class Ext * Ext core utilities and functions. * @singleton @@ -21,7 +27,7 @@ Ext = { * The version of the framework * @type String */ - version : '3.1.1' + version : '3.2.0' }; /** @@ -667,7 +673,7 @@ function(el){ * @return {Boolean} */ isElement : function(v) { - return !!v && v.tagName; + return v ? !!v.tagName : false; }, /** @@ -798,7 +804,7 @@ Ext.ns("Ext.util", "Ext.lib", "Ext.data"); Ext.elCache = {}; -/** +/** * @class Function * These functions are available on every Function object (any JavaScript function). */ @@ -960,7 +966,7 @@ sayHi.defer(2000, this, ['Fred']); } }); -/** +/** * @class String * These functions are available on every String object. */ @@ -1022,6 +1028,6 @@ Ext.applyIf(Array.prototype, { return this; } }); -- +