Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Typing error in ISC_Core.js

    Hallo,

    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

    #2
    Same here, build:
    SmartClient Version: SNAPSHOT_v11.1d_2017-05-12/Enterprise Development Only (built 2017-05-12)

    Comment


      #3
      Thanks, we've fixed this (long-standing) typo.

      Comment

      Working...
      X