isLoaded is set before calling applyStyleFromScope

This commit is contained in:
hshristov
2015-10-07 11:13:29 +03:00
parent 1c7c4813c7
commit 171e545213

View File

@ -549,11 +549,9 @@ export class View extends proxy.ProxyObject implements definition.View {
}
public onLoaded() {
this._loadEachChildView();
this._applyStyleFromScope();
this._isLoaded = true;
this._loadEachChildView();
this._applyStyleFromScope();
this._emit("loaded");
}