Changeset 573

remove debug

Apr 15 2008 * 16:52 (8 months ago)
Committed by seb

Affected files:

trunk/Rakefile (Unified diff)

r552r573
77
88 PUI_DEPENDENCIES = {
99 :core => nil,
10 :window => [ :util, :shadow ],
10 :window => [ :"util/iframe_shim.js", :"util/drag.js", :shadow ],
1111 :carousel => nil,
1212 :dock => nil,
1313 :shadow => :util,

trunk/src/window/shadow.js (Unified diff)

r572r573
4848
4949 if (this.options.shadow)
5050 this.shadow = new UI.Shadow(this.element, {theme: this.getShadowTheme(), withIFrameShim: false});
51 this.iframe = Prototype.Browser.IE || true ? new UI.IframeShim({parent: this.windowManager.container}) : null;
51 this.iframe = Prototype.Browser.IE ? new UI.IframeShim({parent: this.windowManager.container}) : null;
5252 },
5353
5454 addElementsWithShadow: function() {