diff --git a/src/game/mouse/just_on_time/just_on_time.js b/src/game/mouse/just_on_time/just_on_time.js index 0e8953c..8d2ce72 100644 --- a/src/game/mouse/just_on_time/just_on_time.js +++ b/src/game/mouse/just_on_time/just_on_time.js @@ -26,11 +26,6 @@ JustOnTime.prototype.create = function() { sessionStorageManager.setIsNewAppHighestRecord(false); - var experienceAppTimer = new ExperienceAppTimer(); - experienceAppTimer.setTimeOverListener( - (function() { this.timeOver(); }).bind(this) - ); - // keyboard shortcut this.keyboardShortcut = new KeyboardShortcut(); this.keyboardShortcut.addCallback( @@ -109,6 +104,12 @@ JustOnTime.prototype.create = function() { this.god = new God(); + // experience app timer must be shown over god character + var experienceAppTimer = new ExperienceAppTimer(); + experienceAppTimer.setTimeOverListener( + (function() { this.timeOver(); }).bind(this) + ); + // bottom ui var screenBottomUI = new ScreenBottomUI(); screenBottomUI.printLeftTextWithAppHighestRecord(sessionStorageManager.getAppHighestRecord());