Difference between revisions of "MediaWiki:Common.js"

From SCI Wiki
Jump to navigationJump to search
Line 60: Line 60:
 
         imageFile: '/buttons/alignLeft.png',
 
         imageFile: '/buttons/alignLeft.png',
 
         speedTip: "Align Left",
 
         speedTip: "Align Left",
         tagOpen: "<span align=\"left\">",
+
         tagOpen: "<div align=\"left\">",
         tagClose: "</span>",
+
         tagClose: "</div>",
 
         sampleText: "content here"
 
         sampleText: "content here"
 
});
 
});
Line 70: Line 70:
 
         imageFile: '/buttons/alignCenter.png',
 
         imageFile: '/buttons/alignCenter.png',
 
         speedTip: "Align Center",
 
         speedTip: "Align Center",
         tagOpen: "<span align=\"center\">",
+
         tagOpen: "<div align=\"center\">",
         tagClose: "</span>",
+
         tagClose: "</div>",
 
         sampleText: "content here"
 
         sampleText: "content here"
 
});
 
});
Line 80: Line 80:
 
         imageFile: '/buttons/alignRight.png',
 
         imageFile: '/buttons/alignRight.png',
 
         speedTip: "Align Right",
 
         speedTip: "Align Right",
         tagOpen: "<span align=\"right\">",
+
         tagOpen: "<div align=\"right\">",
         tagClose: "</span>",
+
         tagClose: "</div>",
 
         sampleText: "content here"
 
         sampleText: "content here"
 
});
 
});

Revision as of 01:40, 2 September 2013

/* Any JavaScript here will be loaded for all users on every page load. */


// 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: "&nbsp;",
        tagClose: "",
        sampleText: ""
});

// Line Break
mw.toolbar.addButton({
        imageId: 'mw-customeditbutton-myspecialbutton',
        imageFile: '/buttons/br.png',
        speedTip: "New Line",
        tagOpen: "",
        tagClose: "<br />",
        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({ // OLD WAY - "classic toolbar"
        imageId: '',
        imageFile: '/buttons/alignLeft.png',
        speedTip: "Align Left",
        tagOpen: "<div align=\"left\">",
        tagClose: "</div>",
        sampleText: "content here"
});

// Align Center
mw.toolbar.addButton({ // OLD WAY - "classic toolbar"
        imageId: '',
        imageFile: '/buttons/alignCenter.png',
        speedTip: "Align Center",
        tagOpen: "<div align=\"center\">",
        tagClose: "</div>",
        sampleText: "content here"
});

// Align Right
mw.toolbar.addButton({ // OLD WAY - "classic toolbar"
        imageId: '',
        imageFile: '/buttons/alignRight.png',
        speedTip: "Align Right",
        tagOpen: "<div align=\"right\">",
        tagClose: "</div>",
        sampleText: "content here"
});