e9e712bdd78cd2f79ef2276270e094d1bbc7301c
[redakcja.git] / src / redakcja / static / js / wiki / view_sidebar.js
1 (function($) {
2
3     class SidebarPerspective extends $.wiki.Perspective {
4         constructor(options) {
5             super(options);
6             this.noupdate_hash_onenter = true;
7         }
8
9         onEnter(success, failure) {
10             super.onEnter();
11
12             $('#vsplitbar').not('.active').trigger('click');
13             $(".vsplitbar-title").text(this.vsplitbar);
14         }
15     }
16     $.wiki.SidebarPerspective = SidebarPerspective;
17
18 })(jQuery);