לדלג לתוכן

משתמש:1Or/40.js

מתוך ויקיפדיה, האנציקלופדיה החופשית

הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
if ( typeof $.fn.wikiEditor != 'undefined' && typeof kCustomMainInsertButton == 'undefined' && ( mw.config.get('wgAction') == 'edit' || mw.config.get('wgAction') == 'submit' )) {
	window.kCustomMainInsertButton = function(imageId,imageFile,speedTip,tagOpen,tagClose,sampleText,callbackFunc){
		var wikiOptions = {'section': 'main', 'group': 'insert', 'tools': {}};
		wikiOptions.tools[imageId] = {
			label: speedTip,
			type: 'button',
			icon: imageFile,
			action: {
				type: 'callback',
				execute: function() {
					$( '#wpTextbox1' ).textSelection('encapsulateSelection',{
						pre: tagOpen,
						peri: sampleText,
						post: tagClose
					});
					if(typeof callbackFunc == 'function'){ callbackFunc(); }
				}
			}
		};
		$('#wpTextbox1').wikiEditor('addToToolbar', wikiOptions);
	};

	jQuery(document).ready(function($){
	if ( $.isFunction(kCustomMainInsertButton_config) ) {
		kCustomMainInsertButton_config();
	}
	});

} else {
	window.kCustomMainInsertButton = function(){
	};
}

function kCustomMainInsertButton_config(){
 
// בעד :
kCustomMainInsertButton(
	'בעד', //imageId
	'//commons.wikimedia.org/wiki/Special:Redirect?wptype=file&wpvalue=Symbol_support_vote.svg&width=20', //imageFile
	'בעד', //speedTip
	'* {\{בעד}\} \~\~\~\~', //tagOpen
	'', //tagClose
	'' //sampleText
);
// נגד :
kCustomMainInsertButton(
	'נגד', //imageId
	'//commons.wikimedia.org/wiki/Special:Redirect?wptype=file&wpvalue=Symbol_oppose_vote.svg&width=20', //imageFile
	'נגד', //speedTip
	'* {\{נגד}\} \~\~\~\~', //tagOpen
	'', //tagClose
	'' //sampleText
);
  
// בוצע :
kCustomMainInsertButton(
	'בוצע', //imageId
	'//commons.wikimedia.org/wiki/Special:Redirect?wptype=file&wpvalue=Yes_check.svg&width=20', //imageFile
	'בוצע', //speedTip
	':{\{בוצע}\} \~\~\~\~', //tagOpen
	'', //tagClose
	'' //sampleText
);

// הצבעה :
kCustomMainInsertButton(
	'הצבעה', //imageId
	'//commons.wikimedia.org/wiki/Special:Redirect?wptype=file&wpvalue=Number_sign.svg&width=20', //imageFile
	'הצבעה', //speedTip
	'# \~\~\~\~', //tagOpen
	'', //tagClose
	'' //sampleText
);
kCustomMainInsertButton(
	'ציטוט', //imageId
	'https://upload.wikimedia.org/wikipedia/commons/4/4e/Toolbaricon_quote.png', //imageFile
	'ציטוט', //speedTip
	'„', //tagOpen
	'”', //tagClose
	'ציטוט' //sampleText
);
}