X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5913c54d19b8f6775633176032161d49f9b2f1aa..22121e7b8f5b96e2a174bfb623adac3f3a4cbab9:/src/redakcja/static/js/wiki/base.js diff --git a/src/redakcja/static/js/wiki/base.js b/src/redakcja/static/js/wiki/base.js index ad2ee3a9..32554b17 100644 --- a/src/redakcja/static/js/wiki/base.js +++ b/src/redakcja/static/js/wiki/base.js @@ -47,7 +47,7 @@ $.wiki.activePerspective = function() { - return this.perspectives[$("#tabs li.active").attr('id')]; + return this.perspectives[$("#tabs li a.active").parent().attr('id')]; }; $.wiki.exitContext = function() { @@ -68,8 +68,8 @@ $.wiki.newTab = function(doc, title, klass) { var base_id = 'id' + Math.floor(Math.random()* 5000000000); var id = (''+klass)+'_' + base_id; - var $tab = $('
  • ' - + title + '
  • '); + var $tab = $(''); var $view = $('
    '); this.perspectives[id] = new $.wiki[klass]({ @@ -104,30 +104,31 @@ return this.perspectives[ $(tab).attr('id')]; } - $.wiki.switchToTab = function(tab){ - var self = this; - var $tab = $(tab); + $.wiki.switchToTab = function(tab){ + var self = this; + var $tab = $(tab); - if($tab.length != 1) - $tab = $(DEFAULT_PERSPECTIVE); + if($tab.length != 1) + $tab = $(DEFAULT_PERSPECTIVE); - var $old = $tab.closest('.tabs').find('.active'); + var $old_a = $tab.closest('.tabs').find('.active'); - $old.each(function(){ - $(this).removeClass('active'); - self.perspectives[$(this).attr('id')].onExit(); - $('#' + $(this).attr('data-ui-related')).hide(); - }); + $old_a.each(function(){ + var tab = $(this).parent() + $(this).removeClass('active'); + self.perspectives[tab.attr('id')].onExit(); + $('#' + tab.attr('data-ui-related')).hide(); + }); - /* show new */ - $tab.addClass('active'); - $('#' + $tab.attr('data-ui-related')).show(); + /* show new */ + $('a', tab).addClass('active'); + $('#' + $tab.attr('data-ui-related')).show(); - console.log($tab); - console.log($.wiki.perspectives); + console.log($tab); + console.log($.wiki.perspectives); - $.wiki.perspectives[$tab.attr('id')].onEnter(); - }; + $.wiki.perspectives[$tab.attr('id')].onEnter(); + }; /* * Basic perspective. @@ -272,9 +273,11 @@ $.blockUI({ message: this.$elem, css: { - 'top': '25%', - 'left': '25%', - 'width': '50%' + 'top': '25%', + 'left': '25%', + 'width': '50%', + 'max-height': '75%', + 'overflow-y': 'scroll' } }); },