diff --git a/README.md b/README.md index d6c9726..550af80 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,15 @@ [MathSwipe](http://sf-interns.github.io/mathswipe/) is a `CoffeeScript` game developed in the context of the [Originate](http://www.originate.com/) 'Intern Hack 2015' Event, presented August 2015. It is a web-game in which the user is given a grid of numbers (0-9) and operators (+, -, ×). The user's goal is to swipe a path through the cells to create an expression that evaluates to one of the goal-values listed below the board. A level is completed when the user finds expressions evaluating to each goal-value and has cleared the board of all cells. +Math Swipe is a simple brain game that is rooted in math. From children to their parents, Math Swipe is simple yet challenging enough to stump even the strongest math wizzes. + ## Development Information Note that the other services, when run locally, expect the frontend to be served on port 8080. The codebase is primarily written in CoffeeScript using the Node package manager to install most of the dependencies. The entire project (including its dependencies) is bundled by `Webpack` into a single bundle.js file which can be served locally or staticlly with GitHub pages. -Animation and functionality of the game is implemented using `jQuery`, `Two.js` and Scalable Vector Graphics (SVGs). +Animation and functionality of the game is implemented using `jQuery`, `Two.js` and Scalable Vector Graphics (SVGs). The styling is written in `SASS` and compiled down to CSS before use. If you plan to clone this repository and try building the game locally, we recommend using the Sublime plugin `SASS Build` to compile down to CSS. diff --git a/app/controllers/MathSwipeController.coffee b/app/controllers/MathSwipeController.coffee index c15c3d1..5121364 100644 --- a/app/controllers/MathSwipeController.coffee +++ b/app/controllers/MathSwipeController.coffee @@ -23,7 +23,6 @@ GeneralTests = require '../../tests/controllers/GeneralTests' class MathSwipeController constructor: -> - length = 3 @gameScene = @createGameScene() @symbols = @getSymbols() @bindNewGameButton() diff --git a/bundle.js b/bundle.js index 5c990f3..7a8cc0a 100644 --- a/bundle.js +++ b/bundle.js @@ -9342,8 +9342,6 @@ MathSwipeController = (function() { function MathSwipeController() { - var length; - length = 3; this.gameScene = this.createGameScene(); this.symbols = this.getSymbols(); this.bindNewGameButton();