issue93, photo-index and reset-all via access key
[phpfspot.git] / phpfspot.js
index 4bd321f4ebc782037ec434fc2bf6e4ad1c662182..abf9c43fe6da3e5b94972b8206fa04aa0549d823 100644 (file)
@@ -442,6 +442,14 @@ function keyDown(e) {
          }
          return;
       }
+      if(key == 73 && evt.altKey && evt.ctrlKey) /* ctrl+alt+i */ {
+         showPhotoIndex();
+         return;
+      }
+      if(key == 82 && evt.altKey && evt.ctrlKey) /* ctrl+alt+r */ {
+         resetAll();
+         return;
+      }
    }
 }