$("#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) {
}
}
input_index = new_index;
- say(input_index + " " + (picinfo[files[input_index]].name || ""));
+ announce();
setpic();
}
function move(direction) {
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); } });