From 38ea16d54fa0578169af62d2deed738638e600fe Mon Sep 17 00:00:00 2001 From: pdp8 Date: Thu, 1 Feb 2024 16:10:46 +0100 Subject: media loading optimizations, social redirection --- slideshow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'slideshow.js') 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() } -- cgit v1.2.3