summaryrefslogtreecommitdiffstats
path: root/phpfspot.js
diff options
context:
space:
mode:
Diffstat (limited to 'phpfspot.js')
-rw-r--r--phpfspot.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpfspot.js b/phpfspot.js
index 4bd321f..abf9c43 100644
--- a/phpfspot.js
+++ b/phpfspot.js
@@ -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;
+ }
}
}