מדיה ויקי:Gadget-WLM-draft.js
הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
- אופרה: ללחוץ על Ctrl-F5.
window.script96 = true;
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) == 'Watchlist' ) {
$('.mw-changeslist-line-not-watched span.mw-title').before( // Thanks to חיים 7
$('<a>', {text: '♦', title: 'סמן עריכה כנקראה', href: '#nw'})
.css({marginLeft: '0.3em', marginRight: '0.1em', color: '#990066'}).click(function() {
var $this = $(this);
$.getJSON($this.siblings('span.mw-title').find('a:first').attr('href'));
$this.closest('.mw-changeslist-line-not-watched').removeClass('.mw-changeslist-line-not-watched')
.addClass('mw-changeslist-line-watched').hide();
$this.remove();
} ) );
$('.mw-changeslist-line-not-watched ').hide();
$('.mw-changeslist-line-watched span.mw-title').before( // Thanks to חיים 7
$('<a>', {text: '♦', title: 'סמן עריכה כנקראה', href: '#nw'})
.css({marginLeft: '0.3em', marginRight: '0.1em', color: '#990066'}).click(function() {
var $this = $(this);
$.getJSON($this.siblings('span.mw-title').find('a:first').attr('href'));
$this.closest('.mw-changeslist-line-watched').removeClass('.mw-changeslist-line-watched')
.addClass('mw-changeslist-line-not-watched').hide();
$this.remove();
} ) );
$('.mw-changeslist-line-watched a.mw-title').before( // Thanks to חיים 7
$('<a>', {text: '♦', title: 'סמן עריכה כנקראה', href: '#nw'})
.css({marginLeft: '0.3em', marginRight: '0.1em', color: '#990066'}).click(function() {
var $this = $(this);
$.getJSON($this.siblings('a.mw-title').attr('href'));
$this.closest('.mw-changeslist-line-watched').removeClass('.mw-changeslist-line-watched')
.addClass('mw-changeslist-line-not-watched').hide();
$this.remove();
} ) );
$('.mw-changeslist-line-watched td.mw-enhanced-rc').before(
$('<a>', {text: '●', title: 'הסתר עריכה', href: '#nw'})
.css({marginLeft: '0.3em', marginRight: '0.1em', color: '#FFFF99'}).click(function() {
var $this = $(this);
$.getJSON($this.siblings('span.mw-title').find('a:first').attr('href'));
$this.closest('.mw-changeslist-line-watched').hide();
$this.remove();
} ) );
mw.loader.using('mediawiki.util').done( function() {
$( mw.util.addPortletLink('p-cactions', '#', 'גלה עריכות שהוסתרו') ).click(function() {
$('.mw-changeslist-line-not-watched ').show();
$('.mw-changeslist-line-watched ').show();
} );
$( mw.util.addPortletLink('p-cactions', '#', 'הסתר עריכות שנקראו') ).click(function() {
$('.mw-changeslist-line-not-watched ').hide();
} );
} );
}