Skip to content

Commit 6e7dbf2

Browse files
author
dsward2
committed
In index.html, fixed the usage of the settimeout() function in a couple of places.
1 parent 0d10861 commit 6e7dbf2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

LocalRadio/Web/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324

325325
if (needsAudioPlayerStart == true)
326326
{
327-
setTimeout(startAudioPlayerAfterDelay(), 1000);
327+
setTimeout(function() { startAudioPlayerAfterDelay(); }, 5000);
328328
}
329329
}
330330

@@ -446,7 +446,7 @@
446446

447447
location.href = "index.html";
448448

449-
setTimeout(startAudioPlayerAfterDelay(), 1000);
449+
setTimeout(function() { startAudioPlayerAfterDelay(); }, 1000);
450450
}
451451

452452

0 commit comments

Comments
 (0)