I have a a few iron pages where 'home' is my home page. It has a bunch on game cards in it and when the user clicks on a card, it will start a quiz with a bunch of questions. When I go back to the home page and click on a card again, it doesn't start the quiz. It just continues from the previous state. How can I make it start the quiz again. Below are my pages. I'm using the starter kit from Polymer
<iron-pages
selected="[[page]]"
attr-for-selected="name"
fallback-selection="view404"
selected-attribute="visible"
role="main"
>
<my-home name="home"></my-home>
<my-login name="login"></my-login>
<my-view3 name="view3"></my-view3>
<my-view404 name="view404"></my-view404>
<my-game name="game"></my-game>
</iron-pages>