Skip to content

Commit

Permalink
hashtag
Browse files Browse the repository at this point in the history
  • Loading branch information
moverlan committed Mar 12, 2014
1 parent 4f8b42f commit c25354c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,13 @@ <h1 class="title">2048</h1>
</p>
<hr>
<p>
Created by <a href="http://gabrielecirulli.com" target="_blank">Gabriele Cirulli.</a> Based on <a href="https://itunes.apple.com/us/app/1024!/id823499224" target="_blank">1024 by Veewo Studio</a> and conceptually similar to <a href="http://asherv.com/threes/" target="_blank">Threes by Asher Vollmer.</a><br/>
AI by <a href="https://github.com/ov3y/2048-AI">Matt Overlan</a>
Created by <a href="http://gabrielecirulli.com" target="_blank">Gabriele Cirulli.</a> Based on <a href="https://itunes.apple.com/us/app/1024!/id823499224" target="_blank">1024 by Veewo Studio</a> and conceptually similar to <a href="http://asherv.com/threes/" target="_blank">Threes by Asher Vollmer.</a>
</p>
<p>
AI solver by <a href="https://github.com/ov3y/2048-AI">Matt Overlan</a>
</p>
<div class="sharing">
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Check out 2048, a game where you join numbers to score high! #2048game" data-via="gabrielecirulli">Tweet</a>
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Check out 2048, a game where you join numbers to score high! #2048game #2048ai" data-via="gabrielecirulli">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<span class="btc-donate">
<a href="bitcoin:1Ec6onfsQmoP9kkL3zkpB6c5sA4PVcXU2i">
Expand Down
4 changes: 2 additions & 2 deletions js/html_actuator.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ HTMLActuator.prototype.scoreTweetButton = function () {
tweet.setAttribute("data-via", "gabrielecirulli");
tweet.textContent = "Tweet";

var text = "(A)I scored " + this.score + " points at 2048, a game where you " +
"join numbers to score high! #2048game";
var text = "I scored " + this.score + " points at 2048, a game where you " +
"join numbers to score high! #2048game #2048ai";
tweet.setAttribute("data-text", text);

return tweet;
Expand Down

0 comments on commit c25354c

Please sign in to comment.