summaryrefslogtreecommitdiffstats
path: root/phpfspot.js
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-05-25 10:08:48 +0200
committerAndreas Unterkircher <unki@netshadow.at>2008-05-25 10:08:48 +0200
commit5265afe15da056af94e1708e740dcc77b23a7929 (patch)
treef36392995458a438fee2c22fd753fd60c947b111 /phpfspot.js
parent4686714d35c3758f32b56cee37d446d24b579698 (diff)
auto-browse needs to use the 16x16 icons instead of 32x32 which are used in slideshow
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.js')
-rw-r--r--phpfspot.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpfspot.js b/phpfspot.js
index 8db1f65..b4e8421 100644
--- a/phpfspot.js
+++ b/phpfspot.js
@@ -757,12 +757,12 @@ function autoBrowse()
if(document.getElementById('next_link')) {
var next_link = document.getElementById('next_link').href;
window.location.href = next_link;
- document.getElementById('autobrowse_ico').src = web_path + "/resources/32_pause.png";
+ document.getElementById('autobrowse_ico').src = web_path + "/resources/16_pause.png";
}
/* we have reached the last photo */
else {
if(ab_ico = document.getElementById('autobrowse_ico'))
- ab_ico.src = web_path + "/resources/32_play.png";
+ ab_ico.src = web_path + "/resources/16_play.png";
clearInterval(autobrowse);
}