From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.

// <nowiki>

$.when( $.ready, mw.loader.using(  "mediawiki.util"  ) ).then( function () {

    var suffix = mw.config.get( "wgDiffNewId" );

    var page;

    if( suffix ) {

        if( document.getElementsByClassName( "diff-multi" ).length ||

            mw.config.get("wgCanonicalSpecialPageName") === "ComparePages" ) {

            suffix = mw.config.get( "wgDiffOldId" ) + "/" + suffix;

        }

        page = "Special:Diff/" + suffix;

    } else {

        // If "oldid" is present in the URL, show an appropriate rev id there as well.

        if( mw.util.getParamValue( "oldid" ) ) {

            page = "Special:Permalink/" + mw.config.get( "wgRevisionId" );

        } else return; // nothing to do here

    }



    var permalinkEl = $( "<div>" ).append(

        "Permalink to this " + ( suffix ? "diff" : "oldid" ) + ": ",

        $( "<input>" )

            .attr( { "id": "diff-permalink-link" } )

            .val( '[[' + page + ']]' ),

        $( "<button>" )

            .text( "Copy" )

            .css( { "padding": "0.5em", "cursor": "pointer", "margin-left": "0.5em" } )

            .click( function () {

                document.getElementById( "diff-permalink-link" ).select();

                document.execCommand( "copy" );

            } ) );



    $( "#diff-permalink-link" ).attr( "size", page.length ); // resize to diff length



    if( suffix ) {

        $( "#bodyContent" ).prepend( permalinkEl );

    } else {

        $( "#contentSub" ).after( permalinkEl );

    }

} );

// </nowiki>
From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.

// <nowiki>

$.when( $.ready, mw.loader.using(  "mediawiki.util"  ) ).then( function () {

    var suffix = mw.config.get( "wgDiffNewId" );

    var page;

    if( suffix ) {

        if( document.getElementsByClassName( "diff-multi" ).length ||

            mw.config.get("wgCanonicalSpecialPageName") === "ComparePages" ) {

            suffix = mw.config.get( "wgDiffOldId" ) + "/" + suffix;

        }

        page = "Special:Diff/" + suffix;

    } else {

        // If "oldid" is present in the URL, show an appropriate rev id there as well.

        if( mw.util.getParamValue( "oldid" ) ) {

            page = "Special:Permalink/" + mw.config.get( "wgRevisionId" );

        } else return; // nothing to do here

    }



    var permalinkEl = $( "<div>" ).append(

        "Permalink to this " + ( suffix ? "diff" : "oldid" ) + ": ",

        $( "<input>" )

            .attr( { "id": "diff-permalink-link" } )

            .val( '[[' + page + ']]' ),

        $( "<button>" )

            .text( "Copy" )

            .css( { "padding": "0.5em", "cursor": "pointer", "margin-left": "0.5em" } )

            .click( function () {

                document.getElementById( "diff-permalink-link" ).select();

                document.execCommand( "copy" );

            } ) );



    $( "#diff-permalink-link" ).attr( "size", page.length ); // resize to diff length



    if( suffix ) {

        $( "#bodyContent" ).prepend( permalinkEl );

    } else {

        $( "#contentSub" ).after( permalinkEl );

    }

} );

// </nowiki>

Videos

Youtube | Vimeo | Bing

Websites

Google | Yahoo | Bing

Encyclopedia

Google | Yahoo | Bing

Facebook