You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
558 B

  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. // Wrap Plugin
  9. var $wrap = jQuery('.plugin_wrap');
  10. if ($wrap.length) {
  11. if ($wrap.hasClass('tabs')) {
  12. var $tabs = jQuery('.plugin_wrap.tabs');
  13. $tabs.find('div.li').contents().unwrap();
  14. $tabs.find('.curid').parent().addClass('active');
  15. $tabs.find('ul').addClass('nav nav-tabs');
  16. }
  17. }