]> git.scottworley.com Git - picsort/commitdiff
'i' to show Info (number, name) for current pic
authorScott Worley <scottworley@scottworley.com>
Wed, 5 Mar 2014 07:18:04 +0000 (23:18 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 5 Mar 2014 07:18:04 +0000 (23:18 -0800)
picsorter.js

index 084831c17aac947a3551b091c27ab1fc59d45656..92294425889573f80d77e9c550b2477408518dc0 100644 (file)
@@ -54,6 +54,9 @@ function say(message) {
   $("#message").text(message).removeClass("fade");
   setTimeout(function() { $("#message").addClass("fade"); }, 1);
 }
   $("#message").text(message).removeClass("fade");
   setTimeout(function() { $("#message").addClass("fade"); }, 1);
 }
+function announce() {
+  say(input_index + " " + (picinfo[files[input_index]].name || ""));
+}
 
 function toggle_zoom() {
   if (zoom) {
 
 function toggle_zoom() {
   if (zoom) {
@@ -83,7 +86,7 @@ function move_by_filter(direction, filter) {
     }
   }
   input_index = new_index;
     }
   }
   input_index = new_index;
-  say(input_index + " " + (picinfo[files[input_index]].name || ""));
+  announce();
   setpic();
 }
 function move(direction) {
   setpic();
 }
 function move(direction) {
@@ -193,6 +196,7 @@ Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); });
 Mousetrap.bind('x', mark_deleted);
 Mousetrap.bind('X', mark_not_deleted);
 Mousetrap.bind('r', rotate);
 Mousetrap.bind('x', mark_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('c', function() { $("#name").show().focus(); return false; });
 Mousetrap.bind('C', function() { if (last_name) { set_name(last_name); } });
 Mousetrap.bind('f', function() { say(files[input_index]); });
 Mousetrap.bind('c', function() { $("#name").show().focus(); return false; });
 Mousetrap.bind('C', function() { if (last_name) { set_name(last_name); } });