User:Kiteretsu/diff-permalink.js: Difference between revisions
Jump to navigation
Jump to search
+ |
m Tsukushi moved page User:Infinityboy7/diff-permalink.js to User:Kiteretsu/diff-permalink.js without leaving a redirect: Uncontroversial move: User renamed. |
(One intermediate revision by one other user not shown) | |
(No difference)
|
Latest revision as of 02:14, 30 August 2024
// <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>