מדיה ויקי:Gadget-editIntro.js
הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload), או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh), או ללחוץ על צירוף המקשים Ctrl-F5.
- אופרה: ללחוץ על Ctrl-F5.
$( 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&summary=/*+'+mw.msg('gadget-editintro-summary')+'+*/+' ); this.title = mw.msg('gadget-editintro-title'); }); $( 'h1.firstHeading' ).append( $edit ); });