Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
$this->tmpl->assign('next_img', $next_img);
}
$this->tmpl->assign('mini_width', $this->cfg->mini_width);
+ $this->tmpl->assign('photo_width', $this->cfg->photo_width);
$this->tmpl->assign('photo_number', $i);
$this->tmpl->assign('photo_count', count($all_photos));
<!--
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 -->