From 76812d8fb224d6fe85d46d74f2657c397b67e53b Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 28 Feb 2014 21:50:29 -0800 Subject: [PATCH] '%' to see progress --- picsorter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/picsorter.js b/picsorter.js index fd8a8dc..91febfa 100644 --- a/picsorter.js +++ b/picsorter.js @@ -164,3 +164,4 @@ Mousetrap.bind('x', mark_deleted); Mousetrap.bind('X', mark_not_deleted); Mousetrap.bind('r', rotate); Mousetrap.bind('c', function() { $("#name").show().focus(); return false; }); +Mousetrap.bind('%', function() { say((100 * input_index / files.length).toFixed(2) + "%"); }); -- 2.44.1