Created
September 9, 2015 21:37
-
-
Save rotemtam/2cb50ab0f69b5357d4f0 to your computer and use it in GitHub Desktop.
Schematic Host view
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
| <div class="row" ng-if="game.data.state == 'waitingForPlayers'"> | |
| ... | |
| </div> | |
| <div class="row" ng-if="game.data.state == 'preQuestion'"> | |
| ... | |
| </div> | |
| <div class="row" ng-if="game.data.state == 'question'"> | |
| ... | |
| </div> | |
| <div class="row" ng-if="game.data.state == 'postQuestion'"> | |
| ... | |
| </div> | |
| <div class="row" ng-if="game.data.state == 'leaderboard'"> | |
| ... | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment