1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00

Added buttons for the new options.

This commit is contained in:
John Cleaver 2016-04-11 18:38:22 -04:00
parent ea9291454e
commit bf8fd39c48

View File

@ -65,6 +65,28 @@
Skills
</a>
</div>
<div class="header-right header-menu">
<span class="header-item">
<a class="button" v-on:click="hideCompleted = !hideCompleted">
<span class="icon">
<i class="fa" v-bind:class="[hideCompleted ? 'fa-check-square-o' : 'fa-square-o']"></i>
</span>
<span>
Hide Completed
</span>
</a>
</span>
<span class="header-item">
<a class="button" v-on:click="hideSpoilers = !hideSpoilers">
<span class="icon">
<i class="fa" v-bind:class="[hideSpoilers ? 'fa-check-square-o' : 'fa-square-o']"></i>
</span>
<span>
Hide Spoilers
</span>
</a>
</span>
</div>
</div>
</nav>