Sha256: 4721d381788b82735bed923f66ca8750383301434f627b6e732cbc489da29ac4

Contents?: true

Size: 1.16 KB

Versions: 52

Compression:

Stored size: 1.16 KB

Contents

<%#
The following params are the variables that can be used in this partial.

@param form [Wallaby::FormBuilder] custom form object that adds a few helper methods and delegate missing methods to the view
@param object [Wallaby::ResourceDecorator] decorator instance which wraps the resource (e.g. ActiveRecord) instance
@param field_name [String] name of the field
@param value [Object] value of the field
@param metadata [Hash] metadata of the field
%>
<div class="form-group <%= form.error_class field_name %>">
  <%= form.label field_name, metadata[:label] %>
  <%= form.text_area field_name, class: 'form-control', data: { init: 'summernote' } %>
  <%= form.error_messages field_name %>
  <%= hint_of metadata %>
</div>

<% unless @summernote_init %>
  <% @summernote_init = true %>
  <% content_for :custom_javascript do %>
    <% javascript_tag do %>
      jQuery(document).off(readyPrefix('.summernote')).on(readyPrefix('.summernote'), function () {
        $('textarea[data-init="summernote"]').summernote({
          height: 150,
          codemirror: { // codemirror options
            theme: 'base16-dark'
          }
        })
      })
    <% end %>
  <% end %>
<% end %>

Version data entries

52 entries across 13 versions & 1 rubygems

Version Path
wallaby-6.1.6 app/views/wallaby/resources/form/_tinytext.html.erb
wallaby-6.1.6 app/views/wallaby/resources/form/_longtext.html.erb
wallaby-6.1.6 app/views/wallaby/resources/form/_text.html.erb
wallaby-6.1.6 app/views/wallaby/resources/form/_mediumtext.html.erb
wallaby-6.1.5 app/views/wallaby/resources/form/_longtext.html.erb
wallaby-6.1.5 app/views/wallaby/resources/form/_tinytext.html.erb
wallaby-6.1.5 app/views/wallaby/resources/form/_text.html.erb
wallaby-6.1.5 app/views/wallaby/resources/form/_mediumtext.html.erb
wallaby-6.1.4 app/views/wallaby/resources/form/_text.html.erb
wallaby-6.1.4 app/views/wallaby/resources/form/_longtext.html.erb
wallaby-6.1.4 app/views/wallaby/resources/form/_tinytext.html.erb
wallaby-6.1.4 app/views/wallaby/resources/form/_mediumtext.html.erb
wallaby-6.1.3 app/views/wallaby/resources/form/_mediumtext.html.erb
wallaby-6.1.3 app/views/wallaby/resources/form/_text.html.erb
wallaby-6.1.3 app/views/wallaby/resources/form/_longtext.html.erb
wallaby-6.1.3 app/views/wallaby/resources/form/_tinytext.html.erb
wallaby-6.1.2 app/views/wallaby/resources/form/_longtext.html.erb
wallaby-6.1.2 app/views/wallaby/resources/form/_mediumtext.html.erb
wallaby-6.1.2 app/views/wallaby/resources/form/_text.html.erb
wallaby-6.1.2 app/views/wallaby/resources/form/_tinytext.html.erb