issue114, pimp AJAX-loading notification
[phpfspot.git] / themes / default / templates / single_photo.tpl
index fb194a84bfcb675c3da10027569ee588afd9943a..a16776e186373db45c040add5ba2c46100cc7785 100644 (file)
@@ -73,7 +73,7 @@
  { else }
   <a href="{$next_url}" onclick="click(this);" title="click for the next photo" name="photo">
  { /if }
-   <img src="{$image_url}" width="{$width}" height="{$height}" alt="{$image_filename}" id="photo" />
+   <img src="{$image_url}" width="{$width}" height="{$height}" alt="{$image_filename}" name="photo" id="photo" />
   </a>
  </div>
 
 <!--
    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 -->