MediaWiki:Gadget-confirmationRollback-mobile.js: Difference between revisions
Jump to navigation
Jump to search
en>MusikAnimal clean up comments; no need to contact me before editing |
m 1 revision imported |
(No difference)
| |
Latest revision as of 05:58, 19 March 2026
/********************************************************************
** ***WARNING: GLOBAL GADGET FILE*** **
** Any changes to this file will affect many users. Please discuss **
** changes on the talk page or at [[WP:VPT]] before editing. **
********************************************************************/
//<nowiki>
(function() {
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
$(".mw-rollback-link").on('click', function(e) {
var linkText = $(e.target).text(),
count = linkText.match(/\d/) ? linkText.match(/\d+/)[0] : null,
message = 'Rollback ' + (count ? count + ' edits' : 'edit') + ' by ' + mw.util.getParamValue('from',e.target.href) + '?';
if(!confirm(message)) return e.preventDefault();
});
}
}());
//</nowiki>