@@ -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({}); | |||
} | |||
}; |
@@ -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') | |||