diff --git a/assets/javascripts/textile-editor-config.js b/assets/javascripts/textile-editor-config.js index d5d328f..4dbdaa4 100644 --- a/assets/javascripts/textile-editor-config.js +++ b/assets/javascripts/textile-editor-config.js @@ -4,8 +4,8 @@ teButtons.push(new TextileEditorButton('ed_strong', 'bold.png', '*', teButtons.push(new TextileEditorButton('ed_emphasis', 'italic.png', '_', '_', 'i', 'Italicize','s')); teButtons.push(new TextileEditorButton('ed_underline', 'underline.png', '+', '+', 'u', 'Underline','s')); teButtons.push(new TextileEditorButton('ed_strike', 'strikethrough.png', '-', '-', 's', 'Strikethrough','s')); -teButtons.push(new TextileEditorButton('ed_ol', 'list_bullets.png', ' # ', '\n', ',', 'Numbered List')); -teButtons.push(new TextileEditorButton('ed_ul', 'list_numbers.png', ' * ', '\n', '.', 'Bulleted List')); +teButtons.push(new TextileEditorButton('ed_ol', 'list_numbers.png', ' # ', '\n', ',', 'Numbered List')); +teButtons.push(new TextileEditorButton('ed_ul', 'list_bullets.png', ' * ', '\n', '.', 'Bulleted List')); teButtons.push(new TextileEditorButton('ed_p', 'paragraph.png', 'p', '\n', 'p', 'Paragraph')); teButtons.push(new TextileEditorButton('ed_h1', 'h1.png', 'h1', '\n', '1', 'Header 1')); teButtons.push(new TextileEditorButton('ed_h2', 'h2.png', 'h2', '\n', '2', 'Header 2'));