app/views/bhf/entries/form/column/_markdown.haml in bhf-0.4.7 vs app/views/bhf/entries/form/column/_markdown.haml in bhf-0.4.8
- old
+ new
@@ -1,28 +1,2 @@
--# TODO: markdown lib that is not id based bullshit
-
= node f, field do
- - if @quick_edit
- = f.text_area field.name, class: 'markdown'
- - else
- = javascript_include_tag 'bhf/includes/showdown'
- #wmd-editor.wmd-pane
- #wmd-button-bar
- = f.text_area field.name, id: 'wmd-input', class: 'markdown'
- %h6.preview_switch
- Preview
- %span#toggle_html_preview HTML
- %span#toggle_live_preview.active Live
- #wmd-preview.wmd-panel
- #wmd-output.wmd-panel.hide
- = javascript_include_tag 'bhf/includes/wmd'
- :javascript
- var toggleMdPreview = function(e){
- var htmlPreview = e.target.id === 'toggle_html_preview';
- $('wmd-preview').toggleClass('hide', htmlPreview);
- $('wmd-output').toggleClass('hide', !htmlPreview);
- $('toggle_live_preview').toggleClass('active', !htmlPreview);
- $('toggle_html_preview').toggleClass('active', htmlPreview);
- };
- $('toggle_live_preview').addEvent('click', toggleMdPreview);
- $('toggle_html_preview').addEvent('click', toggleMdPreview);
-
+ = f.text_area field.name, class: ('markdown' unless @quick_edit)
\ No newline at end of file