Difference between revisions of "MediaWiki:Monobook.js"
From Hobowars Wiki
m (test) |
m (test) |
||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for users using the MonoBook skin */ | /* Any JavaScript here will be loaded for users using the MonoBook skin */ | ||
− | /* | + | |
+ | /* lol Button */ | ||
if (mwCustomEditButtons) { | if (mwCustomEditButtons) { | ||
mwCustomEditButtons[mwCustomEditButtons.length] = { | mwCustomEditButtons[mwCustomEditButtons.length] = { | ||
"imageFile": "http://www.hobowars.com/wiki/images/Redirect.png", | "imageFile": "http://www.hobowars.com/wiki/images/Redirect.png", | ||
− | "speedTip": "Example | + | "speedTip": "Example lol", |
− | "tagOpen": "< | + | "tagOpen": "<lol>", |
− | "tagClose": "</ | + | "tagClose": "</lol>", |
"sampleText": ""}; | "sampleText": ""}; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* Remove Default Buttons */ | ||
+ | function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText, imageId) { | ||
+ | if ((imageId=="mw-editbutton-image") || (imageId=="mw-editbutton-media")) return; | ||
+ | mwEditButtons[mwEditButtons.length] = | ||
+ | {"imageId": imageId, | ||
+ | "imageFile": imageFile, | ||
+ | "speedTip": speedTip, | ||
+ | "tagOpen": tagOpen, | ||
+ | "tagClose": tagClose, | ||
+ | "sampleText": sampleText}; | ||
} | } |
Revision as of 08:34, 11 July 2012
/* Any JavaScript here will be loaded for users using the MonoBook skin */ /* lol Button */ if (mwCustomEditButtons) { mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://www.hobowars.com/wiki/images/Redirect.png", "speedTip": "Example lol", "tagOpen": "<lol>", "tagClose": "</lol>", "sampleText": ""}; } /* Remove Default Buttons */ function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText, imageId) { if ((imageId=="mw-editbutton-image") || (imageId=="mw-editbutton-media")) return; mwEditButtons[mwEditButtons.length] = {"imageId": imageId, "imageFile": imageFile, "speedTip": speedTip, "tagOpen": tagOpen, "tagClose": tagClose, "sampleText": sampleText}; }