]> git.scottworley.com Git - picsort/blame_incremental - picsorter.js
Press 'z' to toggle zoom
[picsort] / picsorter.js
... / ...
CommitLineData
1var exposure = 20;
2var input_index = 0;
3
4function setpic() {
5 $("#pic").attr("src", exposure + "/" + files[input_index]);
6}
7
8$(function() {
9 setpic();
10});
11
12Mousetrap.bind('z', function() { $("#pic").toggleClass("fit_view"); });