@esfaenza/es-table 11.2.151 → 11.2.152

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.
@@ -760,8 +760,11 @@
760
760
  this.LoadedSignal = new rxjs.Subject();
761
761
  }
762
762
  ThTdProvider.prototype.setLoaded = function () {
763
- this.LoadedSignal.next();
764
- this.LoadedSignal.complete();
763
+ var _this = this;
764
+ requestAnimationFrame(function () {
765
+ _this.LoadedSignal.next();
766
+ _this.LoadedSignal.complete();
767
+ });
765
768
  };
766
769
  return ThTdProvider;
767
770
  }());