Added prev/next post controls

This commit is contained in:
Marcin Kurczewski
2014-10-05 10:09:02 +02:00
parent 33c1d99583
commit 688b5b1281
12 changed files with 200 additions and 9 deletions

View File

@ -22,10 +22,15 @@ App.Keyboard = function(mousetrap) {
mousetrap.reset();
}
function unbind(key) {
mousetrap.unbind(key);
}
return {
keydown: keydown,
keyup: keyup,
reset: reset,
unbind: unbind,
};
};