Skip to content

Commit

Permalink
Merge pull request #15 from HeroCC/patch-1
Browse files Browse the repository at this point in the history
Add a missing Semicolon
  • Loading branch information
ITRav4 authored Oct 23, 2016
2 parents 3ef9e6a + 8f2d7b8 commit 19c7dd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

function checkServer() {
var p = new Ping();
var server = document.domain //Try to get it automagically, but you can manually specify this
var server = document.domain; //Try to get it automagically, but you can manually specify this
var timeout = 2000; //Milliseconds
var body = document.getElementsByTagName("body")[0];
p.ping(server+":32400", function(data) {
Expand Down Expand Up @@ -79,7 +79,7 @@
<link href="assets/css/main.css" rel="stylesheet">

<!-- Fonts from Google Fonts -->
<link href='//fonts.googleapis.com/css?family=Lato:300,400,900' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Lato:300,400,900' rel='stylesheet' type='text/css'>


</head>
Expand Down

0 comments on commit 19c7dd0

Please sign in to comment.