Removed unnecessary hashes from urls
This commit is contained in:
parent
d107ac4929
commit
a8a0a134f5
@ -21,14 +21,14 @@
|
|||||||
<li class="left">
|
<li class="left">
|
||||||
<h2>{{currenttitle}}</h2>
|
<h2>{{currenttitle}}</h2>
|
||||||
<p v-html="currenttext"></p>
|
<p v-html="currenttext"></p>
|
||||||
<p v-if="previousstep">« <a href="#" v-on:click="goto(previousstep)">go to previous question</a></p>
|
<p v-if="previousstep">« <a href="" v-on:click.prevent="goto(previousstep)">go to previous question</a></p>
|
||||||
<p v-if="films.length">« <a href="#" v-on:click="goto(1)">start over</a></p>
|
<p v-if="films.length">« <a href="" v-on:click.prevent="goto(1)">start over</a></p>
|
||||||
</li>
|
</li>
|
||||||
<li v-for="answer in answers" class="left">
|
<li v-for="answer in answers" class="left">
|
||||||
<h2>{{answer.title}}</h2>
|
<h2>{{answer.title}}</h2>
|
||||||
<p v-html="answer.text"></p>
|
<p v-html="answer.text"></p>
|
||||||
<aside>
|
<aside>
|
||||||
<div><a href="#" v-on:click="goto(answer.next)">choose this one</a> »</div>
|
<div><a href="" v-on:click.prevent="goto(answer.next)">choose this one</a> »</div>
|
||||||
</aside>
|
</aside>
|
||||||
</li>
|
</li>
|
||||||
<li v-for="film in films">
|
<li v-for="film in films">
|
||||||
|
|||||||
@ -45,7 +45,7 @@
|
|||||||
<h2>???</h2>
|
<h2>???</h2>
|
||||||
<p>Do you have no idea what film to shoot next?</p>
|
<p>Do you have no idea what film to shoot next?</p>
|
||||||
<aside>
|
<aside>
|
||||||
<div><a href="#" v-on:click="shuffle">surprise me!</a></div>
|
<div><a href="" v-on:click.prevent="shuffle">surprise me!</a></div>
|
||||||
</aside>
|
</aside>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user