diff --git a/galleryscript.js b/galleryscript.js index e838daf..1655202 100644 --- a/galleryscript.js +++ b/galleryscript.js @@ -546,14 +546,18 @@ function keypressed(e) { if (currentimage>(imagelist.length-1)) { currentimage=0; } showimage(currentimage); } - // x: mark image - if (unicode==88) { - markitem(currentimage); + // o: originals + if (unicode==79) { + fliporiginalsi(); } // f: fullscreen if (unicode==70) { flipfullscreen(); } + // x: mark image + if (unicode==88) { + markitem(currentimage); + } if (slideshowinterval!=0) { clearInterval(slideshowtimer); slideshowtimer=setInterval('slidenext()',1000*Math.abs(slideshowinterval));