From b3eebd4dc4a8f4661f97fb62fc422e4f0b7f7b9d Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 10 Feb 2014 05:10:55 +0400 Subject: [PATCH] minor fix... Signed-off-by: Alex A. Naanou --- ui/keybindings.js | 2 ++ ui/marks.js | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/keybindings.js b/ui/keybindings.js index 6e06805c..c6acc0aa 100755 --- a/ui/keybindings.js +++ b/ui/keybindings.js @@ -651,6 +651,8 @@ var KEYBOARD_CONFIG = { function(){ toggleTheme() }), ctrl: doc('Toggle bookmark', function(){ toggleBookmark() }), + 'ctrl+shift': doc('Remove all bookmarks', + function(){ removeAllBookmarks() }), }, S: { diff --git a/ui/marks.js b/ui/marks.js index e2fc33fc..f4780443 100755 --- a/ui/marks.js +++ b/ui/marks.js @@ -349,7 +349,8 @@ function setAllMarks(action, mode, list, toggler){ updateImages(updated) - return res + //return res + return updated }