]> git.scottworley.com Git - picsort/blobdiff - picsorter.js
A manually-callable cleanup utility
[picsort] / picsorter.js
index b8b1804bac0099630ca7ad43330b1d9440a1eaba..1f6b8f053da082a13c294005022b446c960216c1 100644 (file)
@@ -52,7 +52,7 @@ function setpic() {
 
 function say(message) {
   $("#message").text(message).removeClass("fade");
 
 function say(message) {
   $("#message").text(message).removeClass("fade");
-  setTimeout(function() { $("#message").addClass("fade"); }, 1);
+  setTimeout(function() { $("#message").addClass("fade"); }, 100);
 }
 function announce() {
   say(input_index + " " + (picinfo[files[input_index]].name || ""));
 }
 function announce() {
   say(input_index + " " + (picinfo[files[input_index]].name || ""));
@@ -221,6 +221,18 @@ Mousetrap.bind('%', function() { say((100 * input_index / files.length).toFixed(
 Mousetrap.bind('!', show_commands);
 Mousetrap.bind('esc', function() { $("#name").hide(); $("#shell_out").hide(); });
 
 Mousetrap.bind('!', show_commands);
 Mousetrap.bind('esc', function() { $("#name").hide(); $("#shell_out").hide(); });
 
+function clean_picinfo() {
+  files_index = {};
+  $.each(files, function(i, f) {
+    files_index[f] = true;
+  });
+  for (f in picinfo) {
+    if (!files_index[f]) {
+      delete picinfo[f];
+    }
+  }
+}
+
 function undelete_all() {
   for (f in picinfo) {
        delete picinfo[f].deleted;
 function undelete_all() {
   for (f in picinfo) {
        delete picinfo[f].deleted;