issue102, when scrolling up to display photo-view, blank the screen while it's gettin...
authorAndreas Unterkircher <unki@netshadow.at>
Sat, 19 Jan 2008 09:23:34 +0000 (10:23 +0100)
committerAndreas Unterkircher <unki@netshadow.at>
Sat, 19 Jan 2008 09:23:34 +0000 (10:23 +0100)
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
phpfspot.js

index e24d0aa76195b3d9bf3f467b0532fa4e161f8e50..74ad4b9958fa02c5f702f1ddeba73b7e35b3ac4b 100644 (file)
@@ -1,6 +1,13 @@
 function showImage(id, scrollup)
 {
-   HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=showphoto&id=' + id));
+   content = document.getElementById("content");
+
+   /* blank the screen */
+   if(scrollup != undefined) {
+      content.innerHTML = "";
+   }
+
+   HTML_AJAX.replace(content, encodeURI('rpc.php?action=showphoto&id=' + id));
 
    /* scroll the window up to the top */
    if(scrollup != undefined) {