MediaViki:Gadget-confirmationRollback-mobile.js: Redaktələr arasındakı fərq

Silinən məzmun Əlavə edilmiş məzmun
 
(Fərq yoxdur)

Səhifəsinin 16:49, 25 iyul 2021 tarixinə olan son versiyası

/********************************************************************
**                ***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 = '' + mw.util.getParamValue('',e.target.href) + ' adlı istifadəçinin ' + (count ? count + ' redaktəsi' : 'redaktəsi') + ' geri qaytarılsın?';
			if(!confirm(message)) return e.preventDefault();
		});
	}
}());
//</nowiki>