ui-layout-manager-dev 0.0.32-dev → 0.0.34-dev
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/package.json
CHANGED
|
@@ -169,10 +169,16 @@ export class LayoutController {
|
|
|
169
169
|
break;
|
|
170
170
|
}
|
|
171
171
|
};
|
|
172
|
+
if (this.layoutLoaded) {
|
|
173
|
+
// After the initial transformations have been applied, we can hide
|
|
174
|
+
// the loading screen for the root container.
|
|
175
|
+
this.containers[this.ldf.layoutRoot].current.hideLoadingScreen();
|
|
176
|
+
}
|
|
172
177
|
if (isInitial) {
|
|
173
178
|
this.layoutLoaded = true;
|
|
174
|
-
//
|
|
175
|
-
this
|
|
179
|
+
// Call root resize to apply the layout rules after initial transformations
|
|
180
|
+
// are applied, this applies the layout rules to hide the containers.
|
|
181
|
+
this.handleRootResize();
|
|
176
182
|
}
|
|
177
183
|
});
|
|
178
184
|
};
|