summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/javascripts/stargit.js2
-rw-r--r--views/about.tt2
2 files changed, 4 insertions, 0 deletions
diff --git a/public/javascripts/stargit.js b/public/javascripts/stargit.js
index fca3107..ce718fc 100644
--- a/public/javascripts/stargit.js
+++ b/public/javascripts/stargit.js
@@ -230,6 +230,7 @@ var stargit=(function(){
var profile_link = document.createElement("a");
profile_link.setAttribute('href', "http://github.com/"+user);
profile_link.innerText = user;
+ profile_link.text = user;
if (json.website == 'none'){
website_link = "none";
@@ -237,6 +238,7 @@ var stargit=(function(){
var website_link = document.createElement("a");
website_link.setAttribute('href', json.website);
website_link.innerText = json.website;
+ website_link.text = json.website;
}
$("#user_name").html(profile_link);
diff --git a/views/about.tt b/views/about.tt
index 89c4f70..b249a92 100644
--- a/views/about.tt
+++ b/views/about.tt
@@ -27,6 +27,8 @@
<li>move your cursor over a node to display informations about a node</li>
<li>click on a node, to navigate to the graph of this user</li>
</ul>
+
+ StarGit was created by <a href="http://lumberjaph.net">Franck Cuny</a> and <a href="http://ofnodesandedges.com">Alexi Jacomy</a>.
</div>
</div>