X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/a997ffc44454015258d1e413eed477b820cbde8e..9952a1a7aaa0eb9254668d70b69d845f5f2fd984:/picsorter.js diff --git a/picsorter.js b/picsorter.js index 10d83c9..a12b7e6 100644 --- a/picsorter.js +++ b/picsorter.js @@ -1,15 +1,25 @@ var exposure = 20; var input_index = 0; +var zoom = "sm/"; function setpic() { - $("#pic").attr("src", exposure + "/" + files[input_index]); + $("#pic").attr("src", zoom + exposure + "/" + files[input_index]); +} + +function toggle_zoom() { + if (zoom) { + zoom = ""; + } else { + zoom = "sm/"; + } } $(function() { setpic(); }); -Mousetrap.bind('z', function() { $("#pic").toggleClass("fit_view"); }); +Mousetrap.bind('z', function() { toggle_zoom(); 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(); });