diff --git a/README.md b/README.md
index c8fc68d..91569cd 100644
--- a/README.md
+++ b/README.md
@@ -28,13 +28,20 @@ Or proceed manually as follow:
## Controls
* UP & DOWN: navigate through tasks
+* CNTRL+UP & CNTRL+DOWN: shuffle tasks
* TAB: right-indent
* SHIFT + TAB: left-indent
+* BACKSPACE: Remove an empty task
+* ENTER: New task
+* Click on a bullet point to fold it
+* Hover on a bullet point and click complete to complete it
## Technologies used
* Node + Socket.io
* Backbone
+* Backbone.marionette
+* Backbone.localforage
* Foundation
## To-do
diff --git a/bower.json b/bower.json
index 4857b9e..21be4e3 100644
--- a/bower.json
+++ b/bower.json
@@ -15,13 +15,13 @@
"text": "requirejs-text#~2.0.14",
"jquery": "~2.2.0",
"backbone": "~1.2.3",
- "backbone.localStorage": "1.1.16",
"lodash": "~4.0.1",
"requirejs": "~2.1.22",
- "underscore": "~1.8.3",
"modernizr": "~3.3.1",
- "zepto": "~1.1.6",
"localforage": "~1.3.3",
- "localforage-backbone": "~0.6.2"
+ "localforage-backbone": "~0.6.2",
+ "normalize-css": "normalize.css#~3.0.3",
+ "backbone.marionette": "~2.4.4",
+ "underscore": "~1.8.3"
}
}
diff --git a/index.html b/index.html
index 116828e..9b0a856 100644
--- a/index.html
+++ b/index.html
@@ -53,7 +53,7 @@
var elem = document.getElementById("footer-qoute");
var newQoute = qoutes[Math.floor(Math.random() * qoutes.length)] + ' <3 Open Source.';
//if (newQoute.length>100){
- // TODO(wassname) truncate long qoutes with a more link
+ // TODO(wassname) truncate long qoutes with a more link
//}
elem.textContent = newQoute
@@ -67,4 +67,5 @@