]> git.scottworley.com Git - picsort/blobdiff - picsorter.js
'c' to Call a picture something or Change its name
[picsort] / picsorter.js
index db313d9d382493e930fdec1c5bdf227adc647193..70cd2367e7839d26638bb4a6cf3bf1b4daba57a7 100644 (file)
@@ -45,7 +45,7 @@ function move_to_nondeleted(direction) {
   do {
     input_index += direction;
   } while (picinfo[files[input_index]].deleted);
-  say(input_index);
+  say(input_index + " " + (picinfo[files[input_index]].name || ""));
   setpic();
 }
 
@@ -70,7 +70,17 @@ function change_exposure(amount) {
   say((display_exposure >= 0 ? "+" : "") + display_exposure);
 }
 
+function set_name() {
+  var name_input = $("#name").hide().get(0);
+  var name = name_input.value;
+  name_input.value = "";
+  picinfo[files[input_index]].name = name;
+  save_picinfo();
+  say("Named " + name);
+}
+
 $(function() {
+  $("#name").hide().on("keyup", function(e) { e.which == 13 && set_name(); });
   move_to_nondeleted(1);
 });
 
@@ -84,3 +94,4 @@ Mousetrap.bind('b', function() { change_exposure(1); });
 Mousetrap.bind('d', function() { change_exposure(-1); });
 Mousetrap.bind('x', mark_deleted);
 Mousetrap.bind('X', mark_not_deleted);
+Mousetrap.bind('c', function() { $("#name").show().focus(); return false; });