@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.
- package/bundles/esfaenza-es-table.umd.js +5 -2
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esm2015/lib/directives/es_th_td_provider.directive.js +5 -3
- package/fesm2015/esfaenza-es-table.js +4 -2
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +1 -1
|
@@ -760,8 +760,11 @@
|
|
|
760
760
|
this.LoadedSignal = new rxjs.Subject();
|
|
761
761
|
}
|
|
762
762
|
ThTdProvider.prototype.setLoaded = function () {
|
|
763
|
-
this
|
|
764
|
-
|
|
763
|
+
var _this = this;
|
|
764
|
+
requestAnimationFrame(function () {
|
|
765
|
+
_this.LoadedSignal.next();
|
|
766
|
+
_this.LoadedSignal.complete();
|
|
767
|
+
});
|
|
765
768
|
};
|
|
766
769
|
return ThTdProvider;
|
|
767
770
|
}());
|