issue112, preload previous and next photo in single-photo view
[phpfspot.git] / themes / default / templates / single_photo.tpl
index ea513d9c851d44490078837f56f2ac7b99e63451..a16776e186373db45c040add5ba2c46100cc7785 100644 (file)
 <!--
    if(autobrowse && document.getElementById("autobrowse_ico"))
       document.getElementById("autobrowse_ico").src = 'resources/32_pause.png';
+
+   /* lets preload to previous and the next image to speedup */
+   var image_next = new Image();
+   image_next.src = "phpfspot_img.php?idx={$next_img}&width={$photo_width}";
+   var image_prev = new Image();
+   image_prev.src = "phpfspot_img.php?idx={$prev_img}&width={$photo_width}";
+
 -->
 </script>
 <!-- /Single photo -->