From: Scott Worley Date: Fri, 28 Feb 2014 03:48:54 +0000 (-0800) Subject: 'b' and 'd' for brighter and darker/dimmer. X-Git-Url: http://git.scottworley.com/picsort/commitdiff_plain/a997ffc44454015258d1e413eed477b820cbde8e 'b' and 'd' for brighter and darker/dimmer. --- 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(); });