issue102, when calling showImage() from photo-index, move the window to the uppest...
[phpfspot.git] / phpfspot.js
index 2079b80b27a9329ccc4b5c3306b089421f346820..21a027af970748a4c54afdab1b561274b58d8e31 100644 (file)
@@ -1,6 +1,11 @@
-function showImage(id)
+function showImage(id, scrollup)
 {
    HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=showphoto&id=' + id));
+
+   /* scroll the window up to the top */
+   if(scrollup != undefined) {
+      window.scrollTo(0,0);
+   }
 }
 
 function showCredits()