Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/framework/app-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,8 @@ class AppBase extends EventHandler {
// bind tick function to current scope
/* eslint-disable-next-line no-use-before-define */
this.tick = makeTick(this); // Circular linting issue as makeTick and Application reference each other

this.fire('init');
}

static _applications = {};
Expand Down Expand Up @@ -690,6 +692,7 @@ class AppBase extends EventHandler {
this._parseScenes(scenes);
this._parseAssets(assets);
if (!err) {
this.fire('configure');
callback(null);
} else {
callback(err);
Expand Down