You will find only what you bring in.
[redakcja.git] / src / wiki / static / wiki / js / sidebar-perspective.js
1 (function($) {
2
3     
4     SidebarPerspective = function(options) {
5         this.noupdate_hash_onenter = true;
6         $.wiki.Perspective.call(this, options);
7     };
8     
9     SidebarPerspective.prototype = new $.wiki.Perspective();
10
11     SidebarPerspective.prototype.onEnter = function(success, failure) {
12         $.wiki.Perspective.prototype.onEnter.call(this);
13
14         $('#vsplitbar').not('.active').trigger('click');
15         $(".vsplitbar-title").text(this.vsplitbar);
16     }
17     
18     $.wiki.SidebarPerspective = SidebarPerspective;
19
20
21 })(jQuery);