MediaWiki:Common.js

From Thirteen Years of Fire Wiki
Revision as of 18:59, 18 August 2026 by FireDirector (talk | contribs) (Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: mw.loader.using( 'mediawiki.util', function () { $( function () { // Find the footer area (Vector, Timeless, etc.) var $footer = $( '#footer' ); if ( !$footer.length ) { return; } // Create the link element var $link = $( '<div>' ).css({ 'text-align': 'center', 'margin-top': '15px' }).append(...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

mw.loader.using( 'mediawiki.util', function () {
    $( function () {
        // Find the footer area (Vector, Timeless, etc.)
        var $footer = $( '#footer' );
        if ( !$footer.length ) {
            return;
        }

        // Create the link element
        var $link = $( '<div>' ).css({
            'text-align': 'center',
            'margin-top': '15px'
        }).append(
            $( '<a>' )
                .attr( 'href', 'https://www.wattpad.com/user/E_R_Hamilton' )
                .css({
                    'font-size': '1.1em',
                    'color': '#ff6600',
                    'font-weight': 'bold'
                })
                .text( 'Read Thirteen Years of Fire for free on Wattpad' )
        );

        // Append to footer
        $footer.append( $link );
    } );
} );