מדיה ויקי:Gadget-WLM-draft.js: הבדלים בין גרסאות בדף

מתוך צפונות ויקי
(יצירת דף עם התוכן "(function () { var wgLangPrefs = mw.config.get('wgLangPrefs'); if(! $.isArray(wgLangPrefs) ) { wgLangPrefs = Array(); } if ($.inArray("ru", wgLangPrefs) ==...")
 
אין תקציר עריכה
שורה 1: שורה 1:
(function () {
window.script96 = true;
var wgLangPrefs = mw.config.get('wgLangPrefs');
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) == 'Watchlist' ) {
if(! $.isArray(wgLangPrefs) ) {
$('.mw-changeslist-line-not-watched ').hide();
wgLangPrefs = Array();
$('.mw-changeslist-line-watched span.mw-title').before( // Thanks to חיים 7
}
$('<a>', {text: '♦', title: 'סמן עריכה כנקראה', href: '#nw'})
if ($.inArray("ru", wgLangPrefs) == -1) {
.css({marginLeft: '0.3em', marginRight: '0.1em', color: '#990066'}).click(function() {
wgLangPrefs.push("ru");
var $this = $(this);
}
$.getJSON($this.siblings('span.mw-title').find('a:first').attr('href'));
mw.config.set('wgLangPrefs', wgLangPrefs);
$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();
} );
} );
}

גרסה מ־13:21, 14 בספטמבר 2016

window.script96 = true;
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) == 'Watchlist' ) {
	$('.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();
			} );
		} );
}