Más acciones
Sin resumen de edición |
Sin resumen de edición Etiqueta: Revertido |
||
Línea 6: | Línea 6: | ||
} | } | ||
} ); | } ); | ||
function copyToClipboard(elemento) { | |||
var $temp = $("<input>") | |||
$("body").append($temp); | |||
$temp.val($(elemento).text()).select(); | |||
document.execCommand("copy"); | |||
$temp.remove(); | |||
} |
Revisión del 21:59 9 oct 2021
// ocultar mw-pt-translate-header para los anónimos
mw.loader.using( [ 'mediawiki.user' ], function ( ) {
if ( mw.user.isAnon() == 1 ) {
mw.util.addCSS( '.mw-pt-translate-header {display:none}' );
}
} );
function copyToClipboard(elemento) {
var $temp = $("<input>")
$("body").append($temp);
$temp.val($(elemento).text()).select();
document.execCommand("copy");
$temp.remove();
}