تضامنًا مع حق الشعب الفلسطيني |
ميدياويكي:Gadget-hidebotedits.js
اذهب إلى التنقل
اذهب إلى البحث
ملاحظة: بعد الحفظ، قد يلزمك إفراغ الكاش لرؤية التغييرات.
/* Created by User:Ebraminio from fa.wiki
/*jslint indent: 2*/
/*global mw, $*/
mw.hook('wikipage.content').add(function () {
'use strict';
if (mw.config.get('wgAction') !== 'history') { return; }
var hidedEdits = $('#pagehistory .history-user > a')
.filter('[href$="bot"], [href$="Bot"], [href$="BOT"], [href*="bot&"], [href*="Bot&"], [href*="BOT&"]').parent().parent()
.filter(':not(:last-child())')
.has('.minoredit').hide();
if (hidedEdits.length === 0) { return; }
$('<button>', {
'text': 'أظهر/أخف تعديلات\u200c البوتات'
}).click(function (e) {
hidedEdits.toggle();
e.preventDefault();
}).insertAfter('.mw-history-compareselectedversions-button');
});