Difference between revisions of "MediaWiki:Monobook.js"

From Hobowars Wiki
Jump to: navigation, search
m (test)
m (test)
Line 6: Line 6:
 
/* 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-media")) return;
+
   if ((imageId=="http://www.hobowars.com/wiki/skins/common/images/button_headline.png") || (imageId=="http://www.hobowars.com/wiki/skins/common/images/button_headline.png")) return;
 
   mwEditButtons[mwEditButtons.length] =
 
   mwEditButtons[mwEditButtons.length] =
 
     {"imageId": "http://www.hobowars.com/wiki/skins/common/images/button_headline.png",
 
     {"imageId": "http://www.hobowars.com/wiki/skins/common/images/button_headline.png",

Revision as of 08:39, 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=="http://www.hobowars.com/wiki/skins/common/images/button_headline.png") || (imageId=="http://www.hobowars.com/wiki/skins/common/images/button_headline.png")) return;
   mwEditButtons[mwEditButtons.length] =
     {"imageId": "http://www.hobowars.com/wiki/skins/common/images/button_headline.png",
     "imageFile": imageFile,
     "speedTip": speedTip,
     "tagOpen": tagOpen,
     "tagClose": tagClose,
     "sampleText": sampleText};
  }