Added github link in footer

This commit is contained in:
Jeff Hobbs
2012-06-25 08:05:39 -04:00
parent 51e6e31c4e
commit db20dfc283
4 changed files with 9 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
var headerText = "Bingo";
var footerText = "All Rights Reserved";
var footerText = "<a href='https://github.com/jeffehobbs/HTML5-bingo/' target='_blank'>Code available on github</a>";
var JSONBingo = {"squares": [
{"square": "one"},

View File

@@ -5,9 +5,7 @@ $(document).ready(function() {
$('#header').append(headerText);
var d = new Date();
var n = d.getFullYear()
$('#footer').append("&copy; "+n+" "+footerText);
$('#footer').append(footerText);
var clickSnd = new Audio("audio/click.mp3");
var winSnd = new Audio("audio/win.mp3");