מדיה ויקי:Common.js
הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
- אופרה: ללחוץ על Ctrl-F5.
/* כל הסקריפטים הנכתבים כאן ייטענו עבור כל המשתמשים בכל טעינת דף. */ $( function () { if ( mw.toolbar ) { mw.toolbar.addButton({ 'imageFile': '//upload.wikimedia.org/wikipedia/commons/e/e2/Button_align_left.png', 'speedTip': 'Align left', 'tagOpen': '<div style="text-align:left;">\n', 'tagClose': '\n</div>', 'sampleText': 'Your text here' }); mw.toolbar.addButton({ 'imageFile': '//upload.wikimedia.org/wikipedia/commons/5/5f/Button_center.png', 'speedTip': 'Align center', 'tagOpen': '<div style="text-align:center;">\n', 'tagClose': '\n</div>', 'sampleText': 'Your text here' }); mw.toolbar.addButton({ 'imageFile': '//upload.wikimedia.org/wikipedia/commons/7/7a/Button_align_right.png', 'speedTip': 'Align right', 'tagOpen': '<div style="text-align:right;">\n', 'tagClose': '\n</div>', 'sampleText': 'Your text here' }); mw.toolbar.addButton({ 'imageFile': '//upload.wikimedia.org/wikipedia/commons/4/4f/Button_align_justify.png', 'speedTip': 'Align justify', 'tagOpen': '<div style="text-align:justify;">\n', 'tagClose': '\n</div>', 'sampleText': 'Your text here' }); } });