X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/src/ShadowPool.js diff --git a/src/ShadowPool.js b/src/ShadowPool.js index 4488a887..b2e4c6ec 100644 --- a/src/ShadowPool.js +++ b/src/ShadowPool.js @@ -13,14 +13,12 @@ If you are unsure which license is appropriate for your use, please contact the */ /** - * @class Ext.ShadowPool - * @extends Object * 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) { @@ -53,7 +51,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;