میڈیاویکی:Gadget-rollbackconfirmable.js
یاد دہانی: محفوظ کرنے کے بعد ان تبدیلیوں کو دیکھنے کے لیے آپ کو اپنے براؤزر کا کیش (cache) صاف کرنا ہوگا۔
- فائرفاکس/ سفاری: جب Reload پر کلک کریں تو Shift دباکر رکھیں، یا Ctrl-F5 یا Ctrl-R دبائیں (Mac پر R-⌘)
- گوگل کروم: Ctrl-Shift-R دبائیں (Mac پر Shift-R-⌘)
- انٹرنیٹ ایکسپلورر: جب Refresh پر کلک کریں تو Ctrl یا Ctrl-F5 دبائیں
- اوپیرا: Tools → Preferences میں جائیں اور کیش (cache) صاف کریں
/**
* Prevent immediate rollback action with https://gerrit.wikimedia.org/r/90729 help
* Author: User:Ebraminio
*/
/*jslint browser: true, white: true*/
/*global $, mw*/
$.when($.ready, mw.loader.using('jquery.confirmable')).then(function () {
'use strict';
var rollbackLinks = $('.mw-rollback-link a');
if (rollbackLinks.length === 0) { return; }
mw.util.addCSS('.mw-rollback-link, .mw-rollback-link a { white-space: nowrap; display: inline-block; vertical-align: bottom; }');
rollbackLinks.each(function () {
var from = new mw.Uri(this.href).query.from;
if (!$(this).confirmable) { return; }
$(this).confirmable({
i18n: { confirm: 'واگردانی ویرایش ' + from + '؟' },
buttonCallback: function (button, which) {
if (which === 'no') {
// Remove misleading attributes
return button.attr({
title: null,
href: '#'
});
}
return button;
}
});
});
});