Created
May 4, 2018 06:52
-
-
Save nikolayemrikh/90a0b156f2a7835afd6b614e07edf83b to your computer and use it in GitHub Desktop.
App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static start() { | |
| const welcomeScreen = this.showWelcome(); | |
| Loader.loadData() | |
| .then(() => welcomeScreen.unlock()); | |
| } | |
| static showWelcome() { | |
| const welcomeScreen = new WelcomeScreen(); | |
| showView(welcomeScreen.element); | |
| return welcomeScreen; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment