Update script name in preparation of working on issue #1

This commit is contained in:
jcolebrand 2019-12-26 19:06:28 -06:00
parent 124b6a2d61
commit 76aaeab840
2 changed files with 3 additions and 10 deletions

View File

@ -1,4 +1,4 @@
<html>
<html>
<head>
<title>Christmas Lights Bingo Card</title>
<link href="style.css" rel="stylesheet">
@ -89,6 +89,6 @@
</div>
</div>
</div>
<script src="script.js"></script>
<script src="phrases.js"></script>
</body>
</html>

View File

@ -1,11 +1,4 @@
let phrases = [
{phrase:'test',multiple:false},
{phrase:'what', multiple: true}
];
//15/6/3 -> list -> randomize
// fischer yates shuffle
// fischer yates shuffle
function shuffle(array) {
for (let i = array.length - 1; i > 0; i--) {
let j = Math.floor(Math.random() * (i + 1));