Sha256: 74c16e387a3c9c2123e8e2b175fe726700b7c267f14fef43f19d309ebf7be115
Contents?: true
Size: 1.19 KB
Versions: 7
Compression:
Stored size: 1.19 KB
Contents
<%= form_for @content_block do |form| %> <div class="breadcrumbs"> <strong> <%= link_to "Content Blocks", content_blocks_path %> <i class="fa fa-caret-right"></i> <code>:<%= @content_block.name %></code> </strong> </div> <textarea name="content_block[content]" class="content-editor"> <%== @content_block.content.blank? ? "<p><br/></p>" : @content_block.content %> </textarea> <div class="buttons"> <%= link_to "Cancel", content_blocks_path, class: "button cancel" %> <button class="save">Save</button> </div> <% end %> <% content_for :scripts do %> <script> $(function() { $('.content-editor').summernote({ codemirror: { lineNumbers: true, mode: 'text/html', theme: 'monokai' }, focus: true, height: 400, toolbar: [ ['style', ['bold', 'italic', 'underline', 'clear']], ['fontsize', ['fontsize']], ['color', ['color']], ['para', ['ul', 'ol', 'paragraph']], ['table', ['table']], ['insert', ['link', 'picture', 'video']], ['code', ['codeview', 'fullscreen']] ] }); }); </script> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems