Difference between revisions of "MediaWiki:Monobook.js"
From Hobowars Wiki
m (test) |
m (working) |
||
Line 3: | Line 3: | ||
/* Remove Default Buttons */ | /* Remove Default Buttons */ | ||
function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText, imageId) { | function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText, imageId) { | ||
− | if ((imageId=="mw-editbutton-image") || (imageId=="mw-editbutton-bold")) return; | + | if ((imageId=="mw-editbutton-image") || (imageId=="mw-editbutton-bold" || (imageId=="mw-editbutton-italic" || (imageId=="mw-editbutton-link" || (imageId=="mw-editbutton-extlink" || (imageId=="mw-editbutton-headline" || (imageId=="mw-editbutton-media" || (imageId=="mw-editbutton-math" || (imageId=="mw-editbutton-nowiki" || (imageId=="mw-editbutton-sig" || (imageId=="mw-editbutton-hr")) return; |
mwEditButtons[mwEditButtons.length] = | mwEditButtons[mwEditButtons.length] = | ||
{"imageId": imageId, | {"imageId": imageId, | ||
Line 11: | Line 11: | ||
"tagClose": tagClose, | "tagClose": tagClose, | ||
"sampleText": sampleText}; | "sampleText": sampleText}; | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } |
Revision as of 08:46, 11 July 2012
/* Any JavaScript here will be loaded for users using the MonoBook skin */ /* Remove Default Buttons */ function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText, imageId) { if ((imageId=="mw-editbutton-image") || (imageId=="mw-editbutton-bold" || (imageId=="mw-editbutton-italic" || (imageId=="mw-editbutton-link" || (imageId=="mw-editbutton-extlink" || (imageId=="mw-editbutton-headline" || (imageId=="mw-editbutton-media" || (imageId=="mw-editbutton-math" || (imageId=="mw-editbutton-nowiki" || (imageId=="mw-editbutton-sig" || (imageId=="mw-editbutton-hr")) return; mwEditButtons[mwEditButtons.length] = {"imageId": imageId, "imageFile": imageFile, "speedTip": speedTip, "tagOpen": tagOpen, "tagClose": tagClose, "sampleText": sampleText}; }