Created
August 31, 2017 15:14
-
-
Save jecfish/458b1dde07dec9ed6babb1ceaf7b3c9e to your computer and use it in GitHub Desktop.
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
<!-- app.template.html --> | |
<div> | |
<my-top-bar on-reset-clicked="resetGame"></my-top-bar> | |
<my-top-message time="{{currentTime}}"></my-top-message> | |
<my-cards cards="{{cards}}" on-card-flipped="startGame" on-all-cards-matched="stopGame"></my-cards> | |
<template is="dom-if" if="{{isGameCompleted}}"> | |
<my-pop-up-modal time="{{currentTime}}" on-reset-clicked="resetGame"></my-pop-up-modal> | |
</template> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment