This commit is contained in:
Jonas Hetzel 2021-06-18 12:06:57 +02:00
parent 04382347c8
commit ea25019db2
2 changed files with 2 additions and 3 deletions

View File

@ -29,7 +29,7 @@ util.inherits(Board, EventEmitter);
*
*/
Board.prototype.init = function() {
for (var i = 0; i < 9; i++) {
for (var i = 0; i <= 9; i++) {
this.cups.push({});
}
};

View File

@ -1,5 +1,5 @@
doctype html
html(lang='en' onkeypress='shoot(event)')
html(lang='en')
head
meta(charset='UTF-8')
meta( http-equiv='X-UA-Compatible', content='IE=edge' )
@ -13,4 +13,3 @@ body
block content
script(src='/js/Board.js')
script(src='/js/app.js')