mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-13 18:36:54 +00:00
Port JS for <panel>
This commit is contained in:
parent
48a68ce450
commit
ea9b102aaf
|
@ -42,8 +42,38 @@
|
|||
}
|
||||
};
|
||||
|
||||
var Panel = {
|
||||
init: function($content) {
|
||||
var $panels = $content.find('.pi-panel');
|
||||
|
||||
$panels.each( function( index ) {
|
||||
var $panel = $panels.eq(index),
|
||||
$toggles = $panel.find('.pi-section-navigation');
|
||||
|
||||
$toggles.on('click', function(e) {
|
||||
var toggle = e.target.closest('.pi-section-tab');
|
||||
|
||||
if (toggle !== null) {
|
||||
var $newActiveToggle = $(toggle),
|
||||
newRef = $newActiveToggle.attr('data-ref'),
|
||||
$oldActiveToggle = $toggles.find('.pi-section-active'),
|
||||
$oldActiveContent = $panel.find('.pi-section-content.pi-section-active'),
|
||||
$newActiveContent = $panel.find('.pi-section-content[data-ref=' + newRef + ']');
|
||||
|
||||
$oldActiveToggle.removeClass('pi-section-active');
|
||||
$oldActiveContent.removeClass('pi-section-active');
|
||||
|
||||
$newActiveToggle.addClass('pi-section-active');
|
||||
$newActiveContent.addClass('pi-section-active');
|
||||
}
|
||||
});
|
||||
}.bind(this));
|
||||
},
|
||||
};
|
||||
|
||||
mw.hook('wikipage.content').add(function($content) {
|
||||
MediaCollection.init($content);
|
||||
CollapsibleGroup.init($content);
|
||||
Panel.init($content);
|
||||
});
|
||||
})(window, jQuery);
|
||||
|
|
Loading…
Reference in a new issue