Hi,
in 8.2p (2012/01/24) LGPL, the Layout._moveOffscreen() method now delegates to the moveOffscreen()
static method in the Canvas class but that static method references attributes thru the 'this' accessor ...
I believe the following code :
should instead read as follows :
Please let me know when this is fixed and available so I can update to the latest build.
Thanks,
in 8.2p (2012/01/24) LGPL, the Layout._moveOffscreen() method now delegates to the moveOffscreen()
static method in the Canvas class but that static method references attributes thru the 'this' accessor ...
I believe the following code :
Code:
moveOffscreen : function (member) { if (member.isDrawn()) return; var moveOffscreen = (!(!isc.Browser.isWin && isc.Browser.isMoz && this.showCustomScrollbars == false && (this.overflow == isc.Canvas.AUTO))); if (moveOffscreen) member.moveTo(null, -9999); }
Code:
moveOffscreen : function (member) { if (member.isDrawn()) return; var moveOffscreen = (!(!isc.Browser.isWin && isc.Browser.isMoz && member.showCustomScrollbars == false && (member.overflow == isc.Canvas.AUTO))); if (moveOffscreen) member.moveTo(null, -9999); }
Thanks,
Comment