diff --git a/keybindings.js b/keybindings.js index 632bc2f..795e03d 100755 --- a/keybindings.js +++ b/keybindings.js @@ -64,14 +64,16 @@ var keybindings = { 'ctrl': prevArticle, // ctrl-Right 'shift': prevBookmark // shift-Right }, - 8: 37, // BkSp 188: 37, // < 39: { 'default': nextPage, // Left 'ctrl': nextArticle, // ctrl-Left 'shift': nextBookmark // shift-Left }, - 32: 39, // Space + 32: { + 'default': nextPage, // Space + 'shift': prevPage // shift-Space + }, 190: 39, // > 66: toggleBookmark, // B diff --git a/magazine.js b/magazine.js index 4e64528..322197e 100755 --- a/magazine.js +++ b/magazine.js @@ -772,6 +772,8 @@ function removeBookmarkIndicator(n){ /********************************************************** editor ***/ +// XXX some things get really surprized when this is called, make things +// work with the mag cleared... function clearMagazine(){ // XXX do we remove the whole magazine or only it's contents? $('.magazine').remove()