From a997ffc44454015258d1e413eed477b820cbde8e Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 27 Feb 2014 19:48:54 -0800 Subject: [PATCH] 'b' and 'd' for brighter and darker/dimmer. --- picsorter.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/picsorter.js b/picsorter.js index 3fd9e28..10d83c9 100644 --- a/picsorter.js +++ b/picsorter.js @@ -12,3 +12,5 @@ $(function() { Mousetrap.bind('z', function() { $("#pic").toggleClass("fit_view"); }); Mousetrap.bind('n', function() { input_index ++; setpic(); }); Mousetrap.bind('p', function() { input_index --; setpic(); }); +Mousetrap.bind('b', function() { exposure ++; setpic(); }); +Mousetrap.bind('d', function() { exposure --; setpic(); }); -- 2.44.1