X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/8cec3490a14ec25bd4cd58797d1d959dd7cb84ff..aa798f2c8355594c0a3b01a2595308fbe7dc7694:/picsorter.js diff --git a/picsorter.js b/picsorter.js index 1f6b8f0..4f04c05 100644 --- a/picsorter.js +++ b/picsorter.js @@ -108,10 +108,10 @@ function move_to_unnamed(direction) { !("name" in picinfo[files[i]]); }); } -function mark_deleted() { - picinfo[files[input_index]].deleted = 1; +function mark_deleted(method) { + picinfo[files[input_index]].deleted = method; save_picinfo(); - say("Deleted"); + say(method); } function mark_not_deleted() { @@ -209,12 +209,12 @@ Mousetrap.bind(['b', 'k'], function() { change_exposure(1); }); Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); }); Mousetrap.bind('0', move_to_begenning); Mousetrap.bind('$', move_to_end); -Mousetrap.bind('x', mark_deleted); +Mousetrap.bind('x', function(){ mark_deleted("deleted"); }); Mousetrap.bind('X', mark_not_deleted); Mousetrap.bind('r', rotate); Mousetrap.bind('i', announce); Mousetrap.bind('f', function() { say(files[input_index]); }); -Mousetrap.bind('e', function() { say_exposure(); }); +Mousetrap.bind('B', function() { say_exposure(); }); Mousetrap.bind('c', function() { $("#name").show().focus(); return false; }); Mousetrap.bind('C', function() { if (last_name) { set_name(last_name); } }); Mousetrap.bind('%', function() { say((100 * input_index / files.length).toFixed(2) + "%"); });