MediaWiki:CopyText/code.js: Difference between revisions
Jump to navigation
Jump to search
add 5 second timeout for notification |
m 1 revision imported |
(No difference)
| |
Latest revision as of 22:05, 9 October 2025
(function () {
if (window.CopyTextLoaded) {
return;
}
window.CopyTextLoaded = true;
mw.hook('dev.i18n').add(function (i18n) {
i18n.loadMessages('CopyText').done(function (i18n) {
function showSuccess() {
if (window.BannerNotification) {
new BannerNotification(i18n.msg('success').escape(), 'confirm', null, 5000).show();
} else {
mw.notify(i18n.msg('success').plain());
}
}
$('body').on('click', '.copy-to-clipboard-button', function(e){
var text = $(this).data('text'),
$input = $('<textarea>', { type: 'text' })
.val($('.copy-to-clipboard-text').filter(function() {
return $(this).data('text') == text;
}).first().text())
.appendTo('body')
.select();
var success = document.execCommand('Copy');
$input.remove();
if (success) {
showSuccess();
} else {
if (window.navigator && navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(text).then(function() {
showSuccess();
});
}
}
});
});
});
importArticle({
type: 'script',
article: 'u:dev:MediaWiki:I18n-js/code.js'
});
})();