fix(core): update

This commit is contained in:
2020-11-04 18:09:07 +00:00
parent 0884b61099
commit ca3398c4fd
11 changed files with 156 additions and 430 deletions
+4 -3
View File
@@ -17,7 +17,9 @@ export class WebSetup {
public readyPromise = this.readyDeferred.promise;
constructor(optionsArg: IWebSetupConstructorOptions) {
this.options = optionsArg;
this.setup().then(() => {this.readyDeferred.resolve()});
this.setup().then(() => {
this.readyDeferred.resolve();
});
}
/**
@@ -38,6 +40,5 @@ export class WebSetup {
* sets a subpage
* @param metaObject
*/
public setSubLevel(metaObject: interfaces.IMetaObject) {
}
public setSubLevel(metaObject: interfaces.IMetaObject) {}
}