X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/73f54bcce477142814590333a06fffb010fcb0f6..a997ffc44454015258d1e413eed477b820cbde8e:/picsorter.js diff --git a/picsorter.js b/picsorter.js index 9923d38..10d83c9 100644 --- a/picsorter.js +++ b/picsorter.js @@ -1,5 +1,16 @@ var exposure = 20; +var input_index = 0; -$( document ).ready(function() { - $("#pic")[0].src = exposure + "/" + files[0]; +function setpic() { + $("#pic").attr("src", exposure + "/" + files[input_index]); +} + +$(function() { + setpic(); }); + +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(); });