]> git.scottworley.com Git - picsort/commitdiff
'b' and 'd' for brighter and darker/dimmer.
authorScott Worley <scottworley@scottworley.com>
Fri, 28 Feb 2014 03:48:54 +0000 (19:48 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 28 Feb 2014 03:48:54 +0000 (19:48 -0800)
picsorter.js

index 3fd9e2840f6d68d840ed002e274ee6f5567096e2..10d83c9ddd6534cbd470f6b5e155b6ef27a3ab1c 100644 (file)
@@ -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(); });