added f for fullscreen

This commit is contained in:
q
2012-01-23 19:11:59 +02:00
parent 15ac4b4f97
commit 0ddcfa50ce

View File

@@ -550,6 +550,10 @@ function keypressed(e) {
if (unicode==88) { if (unicode==88) {
markitem(currentimage); markitem(currentimage);
} }
// f: fullscreen
if (unicode==70) {
flipfullscreen();
}
if (slideshowinterval!=0) { if (slideshowinterval!=0) {
clearInterval(slideshowtimer); clearInterval(slideshowtimer);
slideshowtimer=setInterval('slidenext()',1000*Math.abs(slideshowinterval)); slideshowtimer=setInterval('slidenext()',1000*Math.abs(slideshowinterval));