@esfaenza/core 19.2.187 → 19.2.189
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.
|
@@ -1653,12 +1653,17 @@ class EmbeddingComponent extends BaseComponent {
|
|
|
1653
1653
|
}
|
|
1654
1654
|
ngOnInit() {
|
|
1655
1655
|
this.emb.setupEmbedding(this.injector.get(ActivatedRoute), () => this.Parameters, () => this.QueryParameters, () => this.CompletePath, () => this.Module, () => this.Page, (EmbeddingSuccesfull, Page, Pars, QueryPars, Module, Localhost) => {
|
|
1656
|
-
|
|
1657
|
-
this.EmbeddingSuccesfull =
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1656
|
+
// Scarica
|
|
1657
|
+
this.EmbeddingSuccesfull = false;
|
|
1658
|
+
// Ricarica
|
|
1659
|
+
requestAnimationFrame(() => {
|
|
1660
|
+
this.Module = Module;
|
|
1661
|
+
this.EmbeddingSuccesfull = EmbeddingSuccesfull;
|
|
1662
|
+
this.Page = Page;
|
|
1663
|
+
this.Pars = Pars;
|
|
1664
|
+
this.QueryPars = QueryPars;
|
|
1665
|
+
this.Localhost = Localhost;
|
|
1666
|
+
});
|
|
1662
1667
|
});
|
|
1663
1668
|
}
|
|
1664
1669
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EmbeddingComponent, deps: [{ token: i0.Injector }, { token: i2$1.AppEmbeddingExtensions }], target: i0.ɵɵFactoryTarget.Component }); }
|