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

מתוך ויקיספר, אוסף הספרים והמדריכים החופשי

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

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
  • אופרה: ללחוץ על Ctrl-F5.
/***
SOURCE: he.wikipedia.org/wiki/MediaWiki:Gadget-editIntro.js
***/
$( function() {
    "use strict";
    if (!mw.messages.exists('gadget-editintro-summary') || !mw.messages.exists('gadget-editintro-title')) {
	   	switch ( mw.config.get( 'wgContentLanguage' )) {
			case 'he':
				mw.messages.set('gadget-editintro-summary','פתיח');
				mw.messages.set('gadget-editintro-title','עריכת פסקת הפתיח');
				break;
			default:
				mw.messages.set('gadget-editintro-summary','Intro');
				mw.messages.set('gadget-editintro-title','Edit intro');
		}
	}
    var $edit = $( '.mw-editsection:first' );
    if ( ! $edit.length )
        return;

    $edit = $edit.clone();
    $edit.find( 'a' ).each(function() {
        this.href = this.href.replace( /section=\d+/, 'section=0');
        this.title = mw.msg('gadget-editintro-title');
    });
    $( 'h1.firstHeading' ).append( $edit );
});