Hallo,
while analyzing a bug I have found a typing error in ISC_Core.js line 64090:
Regards
Peter
while analyzing a bug I have found a typing error in ISC_Core.js line 64090:
Code:
childResettingHandleForAdjustOverflow : function () {
if (this.oveflow == isc.Canvas.VISIBLE) { <============= Correct overflow ??
if (this.parentElement) this.parentElement.childResettingHandleForAdjustOverflow();
} else {
this._scrollLeftBeforeChildReset = this.getScrollLeft();
this._scrollTopBeforeChildReset = this.getScrollTop();
}
},
childResetHandleForAdjustOverflowComplete : function () {
if (this.overflow != isc.Canvas.VISIBLE) {
this.scrollTo(this._scrollLeftBeforeChildReset, this._scrollTopBeforeChildReset);
this._scrollLeftBeforeChildReset = this._scrollTopBeforeChildReset = null;
}
},
Regards
Peter
Comment