Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CoderClicker.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div id="header">
</div>
<h1>Coder Clicker</h1>
<p>Created by <a href="http://twitter.com/EdwardStarcraft">@EdwardStarcraft</a> as a webapp demo for a <a href="http://CodeDay.org/">CodeDay</a> workshop! Fork me on <a href="http://github.com/edjiang/CoderClicker/">GitHub!</p>
<p>Created by <a href="http://twitter.com/EdwardStarcraft">@EdwardStarcraft</a> as a webapp demo for a <a href="http://CodeDay.org/">CodeDay</a> workshop! Fork me on <a href="http://github.com/edjiang/CoderClicker/">GitHub!</a></p>
<p>Tweet about it with the <a href="https://twitter.com/search?q=%23CoderClicker">#CoderClicker</a> hashtag! Confused? Scroll down to see the buttons.</p>

{{> leaderboard}}
Expand All @@ -20,7 +20,7 @@ <h1>Coder Clicker</h1>
<thead>
<th>Username</th><th>Money</th><th>Dollars per Second</th>
</thead>

//Unless it has to do with a large amount of players; I think tbody is optional. From what I have seen it works with and without.
<tbody>
{{#each players}}
{{> player}}
Expand All @@ -29,7 +29,7 @@ <h1>Coder Clicker</h1>
</table>

<h2>{{#if currentUser}}You ({{user.username}}) have ${{formatCurrency user.money}} and make ${{formatCurrency user.rate}} per second!{{else}}Sign in to play!{{/if}}</h2>
{{loginButtons}}<p>
{{loginButtons}}

<div class="details">
<input type="button" class="code btn span4" value="Write line of code ($25)" />
Expand Down