vendor/assets/javascripts/markdown.editor.js.erb in pagedown-bootstrap-rails-2.1.1 vs vendor/assets/javascripts/markdown.editor.js.erb in pagedown-bootstrap-rails-2.1.2

- old
+ new

@@ -1397,10 +1397,10 @@ this.doList(chunk, postProcessing, false); }), group3); buttons.olist = makeButton("wmd-olist-button", "<%= I18n.t('components.markdown_editor.numbered_list.button_title', default: 'Numbered List (Ctrl+O)') %>", "fa fa-list-ol", bindCommand(function (chunk, postProcessing) { this.doList(chunk, postProcessing, true); }), group3); - buttons.heading = makeButton("wmd-heading-button", "<%= I18n.t('components.markdown_editor.heading.button_title', default: 'Heading (Ctrl+H)') %>", "glyphicon glyphicon-header", bindCommand("doHeading"), group3); + buttons.heading = makeButton("wmd-heading-button", "<%= I18n.t('components.markdown_editor.heading.button_title', default: 'Heading (Ctrl+H)') %>", "fa fa-font", bindCommand("doHeading"), group3); group4 = makeGroup(4); buttons.undo = makeButton("wmd-undo-button", "<%= I18n.t('components.markdown_editor.undo.button_title', default: 'Undo (Ctrl+Z)') %>", "fa fa-undo", null, group4); buttons.undo.execute = function (manager) { if (manager) manager.undo(); };