מדיה ויקי:Gadget-rollBackSummary.js

מתוך צפונות ויקי

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

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
  • אופרה: ללחוץ על Ctrl-F5.
/*
 * Adds option to add summary to rollback revets.
 * Written by [[:he:User:Yonidebest]] based on [[:en:User:Ilmari Karonen]]'s script.
 * Translated to Hebrew by [[User:ברק שושני]]
 * Rewritten by [[User:קיפודנחש]]
 *
 */ 
mw.hook( 'wikipage.content' ).add( function( content ) {
	var hist = mw.util.getParamValue( 'action' ) == 'history',
		rollbackSummaryClass = 'rollback-summary-link';
	if ($( '.' + rollbackSummaryClass ).length ) return;
	$( 'span.mw-rollback-link', content )
		.append(' | ')
		.append(
			$( '<a>', { href: '#', 'class': rollbackSummaryClass, title: 'שחזור מהיר עם תקציר', text: 'תקציר' })
			.click( function() {
				var summary = $.trim( prompt( 'אנא הזינו תקציר לשחזור') || '' );
				if ( summary ) 
					$( this ).attr( 'href', $(this).siblings( 'a:first' ).attr( 'href' ) + '&summary=' + encodeURIComponent( summary ) );
			}));
});