X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/ecb5b4ef4385a77d8ec7f436c6b8c2e106c21023..a997ffc44454015258d1e413eed477b820cbde8e:/picsorter.js diff --git a/picsorter.js b/picsorter.js index 567c247..10d83c9 100644 --- a/picsorter.js +++ b/picsorter.js @@ -10,3 +10,7 @@ $(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(); });