nemek
22 Apr 2009, 12:34 AM
Element.fx-more.js, line 125 (isMasked) is:
return this.mask && this.mask.isVisible();
crashes an application that I'm upgrading from 2.0. to 3.0. Replacing the line with:
return this._mask && this._mask.isVisible();
seems to straighten it out.
return this.mask && this.mask.isVisible();
crashes an application that I'm upgrading from 2.0. to 3.0. Replacing the line with:
return this._mask && this._mask.isVisible();
seems to straighten it out.