Difference between revisions 160673 and 160674 on test2wiki

/**
 * Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
 * loaded for all users on every wiki page. If possible create a gadget that is
 * enabled by default instead of adding it here (since gadgets are fully
 * optimized ResourceLoader modules with possibility to add dependencies etc.)
 *
 * Since common.js isn't a gadget, there is no place to declare its
 * dependencies, so we have to lazy load them with mw.loader.using on demand and
(contracted; show full)window.hasClass = ( function() {
    var reCache = {};
    return function (element, className) {
        return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className);
    };
})();


/* Helper script for .hlist class in Common.css
 * Last updated: September 3, 2012
 * Maintainer: [[User:Edokter]]
 */
 
if ( $.client.profile().name == 'msie' ) {
    /* Add pseudo-selector class to last-child list items in IE 8 */
    if ( $.client.profile().versionBase == '8' ) {
        $( '.hlist' ).find( 'dd:last-child, dt:last-child, li:last-child' )
            .addClass( 'hlist-last-child' );
    }
    /* Generate interpuncts and parens for IE < 8 */
    if ( $.client.profile().versionBase < '8' ) {
        $( '.hlist' ).find( 'dt' ).not( ':last-child' )
            .append( ': ' );
        $( '.hlist' ).find( 'dd, li' ).not( ':last-child' )
            .append( '<b>ยท</b> ' );
        $( '.hlist' ).find( 'dl dl, ol ol, ul ul' )
            .prepend( '( ' ).append( ') ' );
    }
}โŽ
โŽ
โŽ
/** Collapsible tables *********************************************************
 *
 *  Description: Allows tables to be collapsed, showing only the header. See
 *               [[Wikipedia:NavFrame]].
 *  Maintainers: [[User:R. Koot]]
 */

var autoCollapse = 2;
(contracted; show full)}

$( createNavigationBarToggleButton );


/* End of mw.loader.using callback */
} );
/* DO NOT ADD CODE BELOW THIS LINE */