1/*
2 * DokuWiki Bootstrap3 Template: Plugins Hacks!
3 *
4 * Home     http://dokuwiki.org/template:bootstrap3
5 * Author   Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
6 * License  GPL 2 (http://www.gnu.org/licenses/gpl.html)
7 */
8
9// Tabbox plugin
10
11setTimeout(function () {
12    jQuery('.plugin_tabbox').each(function () {
13        var $self = jQuery(this);
14        $self.find('> ul.tabs').addClass('nav nav-tabs').css('max-height', '40px');
15    });
16}, 500);
17