From: Andreas Unterkircher Date: Sun, 20 Jan 2008 08:05:10 +0000 (+0100) Subject: issue105, added missing var keyword X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13f892f91316f539696b09e484fab999a16ff13b;p=phpfspot.git issue105, added missing var keyword Signed-off-by: Andreas Unterkircher --- diff --git a/phpfspot.js b/phpfspot.js index c4b39b5..ad4a63e 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -1,6 +1,9 @@ function showImage(id, scrollup) { - content = document.getElementById("content"); + if(!document.getElementById('content')) + return; + + var content = document.getElementById('content'); /* blank the screen */ if(scrollup != undefined) { @@ -433,13 +436,13 @@ function startSlideShow() function nextSlide() { - next_img = HTML_AJAX.grab(encodeURI('rpc.php?action=get_next_slideshow_img')); + var next_img = HTML_AJAX.grab(encodeURI('rpc.php?action=get_next_slideshow_img')); document.getElementById('slide_img').src = next_img; } function prevSlide() { - prev_img = HTML_AJAX.grab(encodeURI('rpc.php?action=get_prev_slideshow_img')); + var prev_img = HTML_AJAX.grab(encodeURI('rpc.php?action=get_prev_slideshow_img')); document.getElementById('slide_img').src = prev_img; } @@ -480,8 +483,8 @@ function autoBrowse() } /* we have reached the last photo */ else { - if(document.getElementById('autobrowse_ico')) - document.getElementById('autobrowse_ico').src = "resources/32_play.png"; + if(ab_ico = document.getElementById('autobrowse_ico')) + ab_ico.src = "resources/32_play.png"; clearInterval(autobrowse); }