]>
git.scottworley.com Git - picsort/blob - picsorter.js
22d6f10f318e097087afe483aa2ed656a7346bce
1 if (!("picsorter_deleted" in localStorage
)) {
2 localStorage
.picsorter_deleted
= JSON
.stringify({});
4 var picsorter_deleted
= JSON
.parse(localStorage
.picsorter_deleted
);
13 $("#pic").attr("src", zoom
+ exposure
+ "/" + files
[input_index
]);
16 function say(message
) {
17 $("#message").text(message
).removeClass("fade");
18 setTimeout(function() { $("#message").addClass("fade"); }, 1);
21 function toggle_zoom() {
30 function move_to_nondeleted(direction
) {
32 input_index
+= direction
;
33 } while (files
[input_index
] in picsorter_deleted
);
37 function mark_deleted() {
38 picsorter_deleted
[files
[input_index
]] = 1;
39 localStorage
.picsorter_deleted
= JSON
.stringify(picsorter_deleted
);
43 function mark_not_deleted() {
44 delete picsorter_deleted
[files
[input_index
]];
45 localStorage
.picsorter_deleted
= JSON
.stringify(picsorter_deleted
);
53 Mousetrap
.bind('z', toggle_zoom
);
54 Mousetrap
.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
55 Mousetrap
.bind('n', function() { move_to_nondeleted(1); setpic(); });
56 Mousetrap
.bind('p', function() { move_to_nondeleted(-1); setpic(); });
57 Mousetrap
.bind('N', function() { input_index
++; say(input_index
); setpic(); });
58 Mousetrap
.bind('P', function() { input_index
--; say(input_index
); setpic(); });
59 Mousetrap
.bind('b', function() { exposure
++; setpic(); });
60 Mousetrap
.bind('d', function() { exposure
--; setpic(); });
61 Mousetrap
.bind('x', mark_deleted
);
62 Mousetrap
.bind('X', mark_not_deleted
);