X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/97c26a9cc9e8bda3e572eebeadf6a3beb8788e4b..51b05914e98fad8ba8a6eef93691e2e5bae034ee:/picsorter.js?ds=sidebyside diff --git a/picsorter.js b/picsorter.js index 8c4f167..3fd9e28 100644 --- a/picsorter.js +++ b/picsorter.js @@ -1,9 +1,14 @@ var exposure = 20; +var input_index = 0; -function setpic(pic) { - $("#pic")[0].src = exposure + "/" + pic; +function setpic() { + $("#pic").attr("src", exposure + "/" + files[input_index]); } -$( document ).ready(function() { - setpic(files[0]); +$(function() { + setpic(); }); + +Mousetrap.bind('z', function() { $("#pic").toggleClass("fit_view"); }); +Mousetrap.bind('n', function() { input_index ++; setpic(); }); +Mousetrap.bind('p', function() { input_index --; setpic(); });