/* * DokuWiki Bootstrap3 Template: Plugins Hacks! * * Home http://dokuwiki.org/template:bootstrap3 * Author Giuseppe Di Terlizzi * License GPL 2 (http://www.gnu.org/licenses/gpl.html) */ // Translation Plugin var $translation = jQuery('#dw__translation'); if ($translation.length) { var $current = $translation.find('.cur'), $lang = $current.text(), $iso = $lang.match(/\(([a-z]*)\)/), $flag = $current.find('img'); $current.parent().addClass('active'); $translation.find('.wikilink2').removeClass('wikilink2').css('opacity', '0.5'); if ($flag.length) { $translation.find('.dropdown-toggle .iconify').hide(); $translation.find('.dropdown-toggle').prepend( jQuery('').attr({ 'src': $flag.attr('src'), 'title': $flag.attr('title') })); } }