diff options
| author | Alexis Jacomy <alexis.jacomy@gmail.com> | 2011-06-20 12:47:11 +0200 |
|---|---|---|
| committer | Alexis Jacomy <alexis.jacomy@gmail.com> | 2011-06-20 12:47:11 +0200 |
| commit | 70d4f20344987a7f02a07c91f8c5319ee2759c2a (patch) | |
| tree | f35115a40c69f12b70a5cb4890922806924434c7 | |
| parent | JS generated CSS fixed for FireFox (diff) | |
| parent | don't know why I don't get the same result on chrome and ffox (diff) | |
| download | stargit-70d4f20344987a7f02a07c91f8c5319ee2759c2a.tar.gz | |
Merge branch 'master' of github.com:franckcuny/StarGit
| -rw-r--r-- | public/javascripts/stargit.js | 2 | ||||
| -rw-r--r-- | views/about.tt | 2 |
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> |
