Refactoring based on feedback

Refactoring controller

Migrating functions off controller onto service class

Simplified modes

Adding comments

Removed unnecessary validation

Fixing testing issues
This commit is contained in:
Henry
2016-08-10 18:22:30 -07:00
committed by Andrew Henry
parent 4ae6da0334
commit 4cf6126d35
20 changed files with 576 additions and 661 deletions

View File

@ -62,6 +62,7 @@ requirejs.config({
"text": "bower_components/text/text",
"uuid": "bower_components/node-uuid/uuid",
"zepto": "bower_components/zepto/zepto.min",
"d3": "bower_components/d3/d3.min"
},
"shim": {
@ -82,6 +83,9 @@ requirejs.config({
},
"zepto": {
"exports": "Zepto"
},
"d3": {
"exports": "d3"
}
},