blob: 6ac74d3c3f1b91a7f4724f7faeef234f575ff4d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* 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';
}
};
|