Added github link in footer
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
.DS_Store
|
||||||
@@ -51,6 +51,11 @@ body {
|
|||||||
margin-bottom: 80px;
|
margin-bottom: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#footer a:link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #8B3E2F;
|
||||||
|
}
|
||||||
|
|
||||||
#board {
|
#board {
|
||||||
width: 640px;
|
width: 640px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
var headerText = "Bingo";
|
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": [
|
var JSONBingo = {"squares": [
|
||||||
{"square": "one"},
|
{"square": "one"},
|
||||||
|
|||||||
@@ -5,9 +5,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
$('#header').append(headerText);
|
$('#header').append(headerText);
|
||||||
|
|
||||||
var d = new Date();
|
$('#footer').append(footerText);
|
||||||
var n = d.getFullYear()
|
|
||||||
$('#footer').append("© "+n+" "+footerText);
|
|
||||||
|
|
||||||
var clickSnd = new Audio("audio/click.mp3");
|
var clickSnd = new Audio("audio/click.mp3");
|
||||||
var winSnd = new Audio("audio/win.mp3");
|
var winSnd = new Audio("audio/win.mp3");
|
||||||
|
|||||||
Reference in New Issue
Block a user