MediaWiki:Common.js
From AGI Wiki
Revision as of 15:02, 25 April 2015 by Andrew Branscom (talk | contribs)
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */ // Wikipedia Link mw.toolbar.addButton({ imageId: 'mw-customeditbutton-myspecialbutton', imageFile: '/buttons/WP.png', speedTip: "Wikipedia Link", tagOpen: "[[w:|", tagClose: "]]", sampleText: "Text here" }); // Underscore mw.toolbar.addButton({ imageId: 'mw-customeditbutton-myspecialbutton', imageFile: '/buttons/FormatUnderscore.png', speedTip: "Underscore", tagOpen: "<u>", tagClose: "</u>", sampleText: "Text here" }); // Strikethrough mw.toolbar.addButton({ imageId: 'mw-customeditbutton-myspecialbutton', imageFile: '/buttons/formatStrike.png', speedTip: "Strikethrough", tagOpen: "<strike>", tagClose: "</strike>", sampleText: "Text here" }); // Alert mw.toolbar.addButton({ imageId: 'Alert', imageFile: '/buttons/red.png', speedTip: "Alert", tagOpen: "<span class=\"Alert\">", tagClose: "</span>", sampleText: "Text here" }); // Inactive mw.toolbar.addButton({ imageId: 'Inactive', imageFile: '/buttons/gray.png', speedTip: "Inactive", tagOpen: "<span class=\"Inactive\">", tagClose: "</span>", sampleText: "Text here" }); // Comment mw.toolbar.addButton({ imageId: 'mw-customeditbutton-myspecialbutton', imageFile: '/buttons/comment.png', speedTip: "Comment", tagOpen: "<!-- ", tagClose: " -->", sampleText: "Insert comment here" }); // Block Quote mw.toolbar.addButton({ imageId: 'blockquote', imageFile: '/buttons/blockquote.png', speedTip: "Blockquote", tagOpen: "<blockquote>", tagClose: "</blockquote>", sampleText: "Insert comment here" }); // Non-breaking space mw.toolbar.addButton({ imageId: 'nobreak', imageFile: '/buttons/nobreak.png', speedTip: "Non-breaking Space", tagOpen: " ", tagClose: "", sampleText: "" }); // Line Break mw.toolbar.addButton({ imageId: 'mw-customeditbutton-myspecialbutton', imageFile: '/buttons/br.png', speedTip: "New Line", tagOpen: "", tagClose: "<br />\n", sampleText: "" }); // Table mw.toolbar.addButton({ imageId: '', imageFile: '/buttons/table.png', speedTip: "Table", tagOpen: "{| cellpadding=\"10\" align=\"center\" width=\"85%\"\n|- \n|align=\"center\"| ", tagClose: "\n|}", sampleText: "Insert content here" }); // Align Left mw.toolbar.addButton({ imageId: '', imageFile: '/buttons/alignLeft.png', speedTip: "Align Left", tagOpen: "<div align=\"left\">", tagClose: "</div>", sampleText: "content here" }); // Align Center mw.toolbar.addButton({ imageId: '', imageFile: '/buttons/alignCenter.png', speedTip: "Align Center", tagOpen: "<div align=\"center\">", tagClose: "</div>", sampleText: "content here" }); // Align Right mw.toolbar.addButton({ imageId: '', imageFile: '/buttons/alignRight.png', speedTip: "Align Right", tagOpen: "<div align=\"right\">", tagClose: "</div>", sampleText: "content here" }); // Justify mw.toolbar.addButton({ imageId: 'justify', imageFile: '/buttons/alignJustify.png', speedTip: "Justify", tagOpen: "<div align=\"justify\">", tagClose: "</div>", sampleText: "" }); // AGI Code mw.toolbar.addButton({ imageId: 'AGI', imageFile: '/buttons/AGI.png', speedTip: "AGI Code", tagOpen: "<div class=\"CodeBlockHeader\">Code:</div>\n<syntaxhighlight lang=\"agi\">\n", tagClose: "</syntaxhighlight>", sampleText: "code here" }); // Code mw.toolbar.addButton({ imageId: 'code', imageFile: '/buttons/code.png', speedTip: "Code", tagOpen: "<code>", tagClose: "</code>", sampleText: "code here" }); // Preformatted mw.toolbar.addButton({ imageId: 'pre', imageFile: '/buttons/pre.png', speedTip: "Preformatted", tagOpen: "<pre>", tagClose: "</pre>", sampleText: "code here" }); // Redirect mw.toolbar.addButton({ imageId: 'Redirect', imageFile: '/buttons/redirect.png', speedTip: "Redirect", tagOpen: "#REDIRECT [[", tagClose: "]]", sampleText: "code here" });