4 SidebarPerspective = function(options) {
5 this.noupdate_hash_onenter = true;
6 $.wiki.Perspective.call(this, options);
9 SidebarPerspective.prototype = new $.wiki.Perspective();
11 SidebarPerspective.prototype.onEnter = function(success, failure) {
12 $.wiki.Perspective.prototype.onEnter.call(this);
14 $('#vsplitbar').not('.active').trigger('click');
15 $(".vsplitbar-title").text(this.vsplitbar);
18 $.wiki.SidebarPerspective = SidebarPerspective;