Editing User talk:GregoryRasputin
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
== add seperate "table buttons" to the tool bar == | == add seperate "table buttons" to the tool bar == | ||
<pre> | <pre> | ||
Line 10: | Line 4: | ||
if (mwCustomEditButtons) { | if (mwCustomEditButtons) { | ||
mwCustomEditButtons[mwCustomEditButtons.length] = { | mwCustomEditButtons[mwCustomEditButtons.length] = { | ||
"imageFile": "http://www. | "imageFile": "http://www.vitadevwiki.com/index.php?title=File:TableStart.png", | ||
"speedTip": "Table Start", | "speedTip": "Table Start", | ||
"tagOpen": "{|", | "tagOpen": "{|", | ||
Line 17: | Line 11: | ||
mwCustomEditButtons[mwCustomEditButtons.length] = { | mwCustomEditButtons[mwCustomEditButtons.length] = { | ||
"imageFile": "http://www. | "imageFile": "http://www.vitadevwiki.com/index.php?title=File:TableCell.png", | ||
"speedTip": "Table Cell", | "speedTip": "Table Cell", | ||
"tagOpen": "|", | "tagOpen": "|", | ||
Line 24: | Line 18: | ||
mwCustomEditButtons[mwCustomEditButtons.length] = { | mwCustomEditButtons[mwCustomEditButtons.length] = { | ||
"imageFile": "http://www. | "imageFile": "http://www.vitadevwiki.com/index.php?title=File:TableRow.png", | ||
"speedTip": "Table Row", | "speedTip": "Table Row", | ||
"tagOpen": "|-", | "tagOpen": "|-", | ||
Line 31: | Line 25: | ||
mwCustomEditButtons[mwCustomEditButtons.length] = { | mwCustomEditButtons[mwCustomEditButtons.length] = { | ||
"imageFile": "http://www. | "imageFile": "http://www.vitadevwiki.com/index.php?title=File:TableEnd.png", | ||
"speedTip": "Table End", | "speedTip": "Table End", | ||
"tagOpen": "", | "tagOpen": "", | ||
Line 42: | Line 36: | ||
<pre> | <pre> | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": "http://www. | "imageFile": "http://www.vitadevwiki.com/index.php?title=File:Button_table.png", | ||
"speedTip": "Insert a table", | "speedTip": "Insert a table", | ||
"tagOpen": '{| class="wikitable"\n|', | "tagOpen": '{| class="wikitable"\n|', | ||
Line 49: | Line 43: | ||
}); | }); | ||
</pre> | </pre> | ||