MediaWiki:Gadget-ConfirmRollbackMobile.js: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
No edit summary
No edit summary
Line 7: Line 7:
});
});
}
}
}());
});
//</nowiki>
//</nowiki>

Revision as of 15:37, May 16, 2019

//<nowiki>
(function() {
	if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
		$('.mw-rollback-link a').click(function(event) {
			if (confirm('Are you sure you want to perform this rollback?')) return;
			event.preventDefault();
		});
	}
});
//</nowiki>