From d0ee768097539866212f188be0f04a1d4ac836f4 Mon Sep 17 00:00:00 2001 From: cbscharf Date: Wed, 20 Jun 2007 14:13:06 +0000 Subject: [PATCH] Fixed that bullet list and numbered list glyphs were backwards git-svn-id: http://svn.webtest.wvu.edu/repos/rails/plugins/textile_editor_helper@136 6731b596-9f2e-9c42-8d5b-c76208a4698c --- assets/javascripts/textile-editor-config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'));