Difference between revisions of "MediaWiki:Monobook.js"

From Hobowars Wiki
Jump to: navigation, search
(test)
 
(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 */
  
function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText, imageId) {
+
/* Remove Default Buttons */
if ((imageId=="mw-editbutton-image") || (imageId=="mw-editbutton-media")) return;
+
function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText, imageId) {
mwEditButtons[mwEditButtons.length] =
+
  if ((imageId=="mw-editbutton-image") || (imageId=="mw-editbutton-media")) return;
{"imageId": imageId,
+
  mwEditButtons[mwEditButtons.length] =
"imageFile": imageFile,
+
    {"imageId": imageId,
"speedTip": speedTip,
+
    "imageFile": imageFile,
"tagOpen": tagOpen,
+
    "speedTip": speedTip,
"tagClose": tagClose,
+
    "tagOpen": tagOpen,
"sampleText": sampleText};
+
    "tagClose": tagClose,
}
+
    "sampleText": sampleText};
 +
  }
 +
 
 +
/* StrikeThrough Text Button */
 +
if (mwCustomEditButtons) {
 +
  mwCustomEditButtons[mwCustomEditButtons.length] = {Redirect.png",
 +
    "speedTip": "Example redirect",
 +
    "tagOpen": "<none>",
 +
    "tagClose": "</none>",
 +
    "sampleText": ""};
 +
  }

Revision as of 08:20, 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-media")) return;
   mwEditButtons[mwEditButtons.length] =
     {"imageId": imageId,
     "imageFile": imageFile,
     "speedTip": speedTip,
     "tagOpen": tagOpen,
     "tagClose": tagClose,
     "sampleText": sampleText};
  }

/* StrikeThrough Text Button */
 if (mwCustomEditButtons) {
   mwCustomEditButtons[mwCustomEditButtons.length] = {Redirect.png",
     "speedTip": "Example redirect",
     "tagOpen": "<none>",
     "tagClose": "</none>",
     "sampleText": ""};
  }