diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9bea433 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +.DS_Store diff --git a/css/style.css b/css/style.css index a6247a1..dd1b2b8 100644 --- a/css/style.css +++ b/css/style.css @@ -51,6 +51,11 @@ body { margin-bottom: 80px; } +#footer a:link { + text-decoration: none; + color: #8B3E2F; +} + #board { width: 640px; background-color: #fff; diff --git a/js/data.js b/js/data.js index cac37b6..5064223 100644 --- a/js/data.js +++ b/js/data.js @@ -1,7 +1,7 @@ var headerText = "Bingo"; -var footerText = "All Rights Reserved"; +var footerText = "Code available on github"; var JSONBingo = {"squares": [ {"square": "one"}, diff --git a/js/script.js b/js/script.js index 59a1020..b6cadd3 100644 --- a/js/script.js +++ b/js/script.js @@ -5,9 +5,7 @@ $(document).ready(function() { $('#header').append(headerText); - var d = new Date(); - var n = d.getFullYear() - $('#footer').append("© "+n+" "+footerText); + $('#footer').append(footerText); var clickSnd = new Audio("audio/click.mp3"); var winSnd = new Audio("audio/win.mp3");