No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
} | } | ||
function | function copyToClipboard(element) { | ||
var $temp = $("<input>"); | |||
$("body").append($temp); | |||
$temp.val($(element).text()).select(); | |||
document.execCommand("copy"); | document.execCommand("copy"); | ||
$temp.remove(); | |||
} | } |
Revision as of 14:11, 20 April 2023
/* Any JavaScript here will be loaded for all users on every page load. */
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
document.body.classList.add( 'mw-rcfilters-ui-initialized' );
}
function copyToClipboard(element) {
var $temp = $("<input>");
$("body").append($temp);
$temp.val($(element).text()).select();
document.execCommand("copy");
$temp.remove();
}