]>
git.scottworley.com Git - picsort/blob - picsorter.js
c3af639441e865b47560208c5a605e0bb7437cc2
5 if (!("picsorter_deleted" in localStorage
)) {
6 localStorage
.picsorter_deleted
= JSON
.stringify({});
10 $("#pic").attr("src", zoom
+ exposure
+ "/" + files
[input_index
]);
13 function toggle_zoom() {
21 function move_to_nondeleted(direction
) {
22 var deleted
= JSON
.parse(localStorage
.picsorter_deleted
);
24 input_index
+= direction
;
25 } while (files
[input_index
] in deleted
);
28 function mark_deleted() {
29 var deleted
= JSON
.parse(localStorage
.picsorter_deleted
);
30 deleted
[files
[input_index
]] = 1;
31 localStorage
.picsorter_deleted
= JSON
.stringify(deleted
);
34 function mark_not_deleted() {
35 var deleted
= JSON
.parse(localStorage
.picsorter_deleted
);
36 delete deleted
[files
[input_index
]];
37 localStorage
.picsorter_deleted
= JSON
.stringify(deleted
);
44 Mousetrap
.bind('z', function() { toggle_zoom(); setpic(); });
45 Mousetrap
.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
46 Mousetrap
.bind('n', function() { move_to_nondeleted(1); setpic(); });
47 Mousetrap
.bind('p', function() { move_to_nondeleted(-1); setpic(); });
48 Mousetrap
.bind('N', function() { input_index
++; setpic(); });
49 Mousetrap
.bind('P', function() { input_index
--; setpic(); });
50 Mousetrap
.bind('b', function() { exposure
++; setpic(); });
51 Mousetrap
.bind('d', function() { exposure
--; setpic(); });
52 Mousetrap
.bind('x', function() { mark_deleted(); });
53 Mousetrap
.bind('X', function() { mark_not_deleted(); });