Skip to content

Commit

Permalink
adding todo
Browse files Browse the repository at this point in the history
  • Loading branch information
yairgo committed Jan 17, 2014
1 parent 89eda34 commit cc7c98e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
initially disable all inputs
when first frame is complete disable first frame and enable 2nd, and on through the rest
when clear input is clicked reset the page

when a frame is added to the game, if it knows it's score display it under the frame

display the current total score

Make the input parser know what frame it is parsing and add the frame with the number to the game.


3 changes: 2 additions & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
var game;
$(function() {

var game = new Game();
game = new Game();
var inputParser = new InputParser(game);
$('.frame input').focusout(function(){
var kids = $(this).parent().children();
Expand Down
Empty file added spec/TODO
Empty file.

0 comments on commit cc7c98e

Please sign in to comment.