X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/e18c13a6bea305ff31aec74c590c13551b4cc6a5..51b05914e98fad8ba8a6eef93691e2e5bae034ee:/picsorter.js diff --git a/picsorter.js b/picsorter.js index ff1db27..3fd9e28 100644 --- a/picsorter.js +++ b/picsorter.js @@ -1,3 +1,14 @@ -$( document ).ready(function() { - $("#pic")[0].src = "20/" + files[0]; +var exposure = 20; +var input_index = 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(); });