diff --git a/htdocs/index.html b/htdocs/index.html index fea82498..fbcbee65 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -190,11 +190,11 @@ -
Modes
+
▾Modes
-
Controls
+
▾Controls
@@ -242,7 +242,7 @@
-
Range
+
▾Range
diff --git a/htdocs/openwebrx.js b/htdocs/openwebrx.js index 9210cc80..0d8a7eea 100644 --- a/htdocs/openwebrx.js +++ b/htdocs/openwebrx.js @@ -45,8 +45,10 @@ function toggleSection(el) { var next_el = el.nextElementSibling; if (next_el) { if (next_el.style.display === "none") { + el.innerHTML = el.innerHTML.replace("\u25B4", "\u25BE"); next_el.style.display = "block"; } else { + el.innerHTML = el.innerHTML.replace("\u25BE", "\u25B4"); next_el.style.display = "none"; } }