summaryrefslogtreecommitdiff
path: root/slideshow.js
diff options
context:
space:
mode:
authorpdp8 <pdp8@pdp8.info>2024-02-01 16:10:46 +0100
committerpdp8 <pdp8@pdp8.info>2024-02-01 16:10:46 +0100
commit38ea16d54fa0578169af62d2deed738638e600fe (patch)
tree88fac5601d7d72d3e019a9624b1260cca1ab762f /slideshow.js
parent01e16b853f9a5cbf60a23c48d3ce08e63672daf9 (diff)
media loading optimizations, social redirection
Diffstat (limited to 'slideshow.js')
-rw-r--r--slideshow.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow.js b/slideshow.js
index ea265e4..48a5395 100644
--- a/slideshow.js
+++ b/slideshow.js
@@ -52,7 +52,7 @@ function play() {
playing = 1
interval = setInterval(function () { next() }, 3000);
document.getElementById("play-indicator").title = "Pause slideshow"
- document.getElementById("play-indicator").className = "fa fa-pause"
+ document.getElementById("play-indicator").className = "fa fa-inverse fa-pause"
hide_controls()
}
@@ -60,7 +60,7 @@ function stop() {
playing = 0
clearInterval(interval)
document.getElementById("play-indicator").title = "Play slideshow"
- document.getElementById("play-indicator").className = "fa fa-play"
+ document.getElementById("play-indicator").className = "fa fa-inverse fa-play"
show_controls()
}