User talk:GregoryRasputin

From Vita Developer wiki
Revision as of 02:41, 27 November 2011 by Euss (talk | contribs)
Jump to navigation Jump to search

add seperate "table buttons" to the tool bar


if (mwCustomEditButtons) {
   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://community.wikia.com/wiki/File:TableStart.png",
     "speedTip": "Table Start",
     "tagOpen": "{|",
     "tagClose": "",
     "sampleText": ""};
 
   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://community.wikia.com/wiki/File:TableCell.png",
     "speedTip": "Table Cell",
     "tagOpen": "|",
     "tagClose": "",
     "sampleText": "cell"};
 
   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://community.wikia.com/wiki/File:TableRow.png",
     "speedTip": "Table Row",
     "tagOpen": "|-",
     "tagClose": "",
     "sampleText": ""};

   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://community.wikia.com/wiki/File:TableEnd.png",
     "speedTip": "Table End",
     "tagOpen": "",
     "tagClose": "|}",
     "sampleText": ""}
  }

add single "table button" to the tool bar

if (mwCustomEditButtons) {
    mwCustomEditButtons.push({
        "imageFile": "//upload.wikimedia.org/wikipedia/en/6/60/Button_insert_table.png",
        "speedTip": "Insert a table",
        "tagOpen": '{| class="wikitable"\n|',
        "tagClose": "\n|}",
        "sampleText": "-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3"
    });
  }