MediaWiki:Common.js
MediaWiki interface page
Views
Actions
Namespaces
Variants
Tools
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.load( 'https://cdn.jsdelivr.net/npm/uikit@3.5.8/dist/js/uikit.min.js' );
mw.loader.load( 'https://cdn.jsdelivr.net/npm/uikit@3.5.8/dist/js/uikit-icons.min.js' );
(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').show();
} else {
mw.loader.using('mediawiki.notify').then(function () {
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();
});
}
}
});
});
});
})();