מדיה ויקי:Gadget-WLM-draft.js: הבדלים בין גרסאות בדף
אין תקציר עריכה |
אין תקציר עריכה |
||
שורה 1: | שורה 1: | ||
window.script96 = true; | window.script96 = true; | ||
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) == 'Watchlist' ) { | 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-not-watched ').hide(); | ||
$('.mw-changeslist-line-watched span.mw-title').before( // Thanks to חיים 7 | $('.mw-changeslist-line-watched span.mw-title').before( // Thanks to חיים 7 |
גרסה מ־13:22, 14 בספטמבר 2016
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();
} );
} );
}