X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/530ef4b6c5b943cfa68b779d11cf7de29aa878bf..b37ceabb82336ee82757cd32efe353cfab8ec267:/docs/source/Ext.html diff --git a/docs/source/Ext.html b/docs/source/Ext.html index ebc3d5a9..f2f97aec 100644 --- a/docs/source/Ext.html +++ b/docs/source/Ext.html @@ -7,7 +7,7 @@
/*!
- * Ext JS Library 3.2.1
+ * Ext JS Library 3.2.2
  * Copyright(c) 2006-2010 Ext JS, Inc.
  * licensing@extjs.com
  * http://www.extjs.com/license
@@ -15,7 +15,7 @@
 // for old browsers
 window.undefined = window.undefined;
 
-
/** +/** * @class Ext * Ext core utilities and functions. * @singleton @@ -26,11 +26,11 @@ Ext = { * The version of the framework * @type String */ - version : '3.2.1', + version : '3.2.2', versionDetail : { major: 3, minor: 2, - patch: 1 + patch: 2 } }; @@ -406,7 +406,7 @@ Ext.urlDecode("foo=1&bar=2&bar=3&bar=4", false); // returns {foo: "1", bar: ["2" } : function(a, i, j){ return Array.prototype.slice.call(a, i || 0, j || a.length); - } + }; }(), isIterable : function(v){ @@ -553,6 +553,22 @@ function(el){ getBody : function(){ return Ext.get(DOC.body || DOC.documentElement); }, + +
/** + * Returns the current document body as an {@link Ext.Element}. + * @return Ext.Element The document body + */ + getHead : function() { + var head; + + return function() { + if (head == undefined) { + head = Ext.get(DOC.getElementsByTagName("head")[0]); + } + + return head; + }; + }(),
/** * Removes a DOM node from the document. @@ -574,7 +590,7 @@ function(el){ d.innerHTML = ''; delete Ext.elCache[n.id]; } - } + }; }() : function(n){ if(n && n.parentNode && n.tagName != 'BODY'){ (Ext.enableNestedListenerRemoval) ? Ext.EventManager.purgeElement(n, true) : Ext.EventManager.removeAll(n); @@ -808,7 +824,7 @@ Ext.ns("Ext.util", "Ext.lib", "Ext.data"); Ext.elCache = {}; -
/** +/** * @class Function * These functions are available on every Function object (any JavaScript function). */ @@ -970,7 +986,7 @@ sayHi.defer(2000, this, ['Fred']); } }); -
/** +/** * @class String * These functions are available on every String object. */