X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/source/ShadowPool.html diff --git a/docs/source/ShadowPool.html b/docs/source/ShadowPool.html index dae28dd2..86111d31 100644 --- a/docs/source/ShadowPool.html +++ b/docs/source/ShadowPool.html @@ -3,8 +3,8 @@ The source code - - + + @@ -16,14 +16,12 @@
/**
- * @class Ext.ShadowPool
- * @extends Object
- * Private utility class that manages the internal Shadow cache
+ * Private utility class that manages the internal Shadow cache
  * @private
  */
 Ext.define('Ext.ShadowPool', {
     singleton: true,
-    requires: ['Ext.core.DomHelper'],
+    requires: ['Ext.DomHelper'],
 
     markup: function() {
         if (Ext.supports.CSS3BoxShadow) {
@@ -56,7 +54,7 @@ Ext.define('Ext.ShadowPool', {
     pull: function() {
         var sh = this.shadows.shift();
         if (!sh) {
-            sh = Ext.get(Ext.core.DomHelper.insertHtml("beforeBegin", document.body.firstChild, this.markup));
+            sh = Ext.get(Ext.DomHelper.insertHtml("beforeBegin", document.body.firstChild, this.markup));
             sh.autoBoxAdjust = false;
         }
         return sh;