mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 17:45:56 +00:00
collapse_feedlist: fix for button element
This commit is contained in:
@@ -935,7 +935,7 @@ function collapse_feedlist() {
|
|||||||
|
|
||||||
if (!Element.visible(fl)) {
|
if (!Element.visible(fl)) {
|
||||||
Element.show(fl);
|
Element.show(fl);
|
||||||
fbtn.value = "<<";
|
fbtn.innerHTML = "<<";
|
||||||
|
|
||||||
if (theme != "graycube") {
|
if (theme != "graycube") {
|
||||||
|
|
||||||
@@ -957,7 +957,7 @@ function collapse_feedlist() {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
Element.hide(fl);
|
Element.hide(fl);
|
||||||
fbtn.value = ">>";
|
fbtn.innerHTML = ">>";
|
||||||
|
|
||||||
if (theme != "graycube") {
|
if (theme != "graycube") {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user