mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-13 20:11:07 +02:00
* https://eslint.org/docs/latest/rules/no-undef * https://eslint.org/docs/latest/rules/no-unused-vars
12 lines
282 B
JavaScript
12 lines
282 B
JavaScript
/* global Plugins, Feeds */
|
|
|
|
Plugins.Toggle_Sidebar = {
|
|
toggle: function() {
|
|
Feeds.toggle();
|
|
|
|
const label = document.querySelector("i.toggle-sidebar-label");
|
|
|
|
label.innerHTML = Element.visible("feeds-holder") ? 'chevron_left' : 'chevron_right';
|
|
}
|
|
};
|