survey-angular-ui 1.12.35 → 1.12.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1464,7 +1464,7 @@
1464
1464
  this.row.setRootElement(el);
1465
1465
  if (!this.row.isNeedRender) {
1466
1466
  this.ngZone.runOutsideAngular(function () {
1467
- setTimeout(function () {
1467
+ _this.lazyRenderingTimeout = setTimeout(function () {
1468
1468
  _this.row.startLazyRendering(el);
1469
1469
  }, 10);
1470
1470
  });
@@ -1487,6 +1487,7 @@
1487
1487
  }
1488
1488
  };
1489
1489
  RowComponent.prototype.stopLazyRendering = function () {
1490
+ clearTimeout(this.lazyRenderingTimeout);
1490
1491
  this.row.stopLazyRendering();
1491
1492
  this.row.isNeedRender = !this.row.isLazyRendering();
1492
1493
  };