Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
       🚧 True to our name, we’re still a work in progress. 🚧
   
       You’re welcome to explore, but account registration is currently invite-only as we finalize the setup. 
       Join our forum or follow Mastodon for updates. 
       Full Wiki launch coming soon!
   

MediaWiki:Gadget-sitenav.js: Difference between revisions

MediaWiki interface page
m Removed protection from "MediaWiki:Gadget-sitenav.js"
 
(No difference)

Latest revision as of 05:07, 14 March 2026

/* =============================================================================
   Gadget-sitenav.js
   Forum link — after the menu toggle, pill style.
   ============================================================================= */
$( function () {
    var $drawer = $( '.citizen-drawer' );
    if ( !$drawer.length ) return;

    var $link = $( '<a>' ).attr( {
        href   : 'https://forum.unfinishedprojects.net',
        target : '_blank',
        rel    : 'noopener noreferrer',
        title  : 'Forum',
        'class': 'citizen-cdx-button--size-large cdx-button cdx-button--fake-button '
               + 'cdx-button--fake-button--enabled cdx-button--icon-only '
               + 'cdx-button--weight-quiet citizen-forum-link'
    } ).append(
        $( '<span>' ).addClass( 'citizen-ui-icon mw-ui-icon-speechBubbles mw-ui-icon-wikimedia-speechBubbles' ),
        $( '<span>' ).text( 'Forum' )
    );

    $drawer.after( $link );
} );