Skip to content

Commit

Permalink
Fixed that bullet list and numbered list glyphs were backwards
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.webtest.wvu.edu/repos/rails/plugins/textile_editor_helper@136 6731b596-9f2e-9c42-8d5b-c76208a4698c
  • Loading branch information
cbscharf committed Jun 20, 2007
1 parent 53ccb14 commit d0ee768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/javascripts/textile-editor-config.js
Expand Up @@ -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'));
Expand Down

0 comments on commit d0ee768

Please sign in to comment.