Sha256: 5761e6e6cd475505bb654541ad7536b03905e4abf2d0ad236a2fc654354322d7
Contents?: true
Size: 1.3 KB
Versions: 26
Compression:
Stored size: 1.3 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 %> <% form_value = value.is_a?(String) ? value : (JSON.pretty_generate(value) rescue nil) %> <div class="form-group <%= form.error_class field_name %>"> <%= form.label field_name, metadata[:label] %> <%= form.text_area field_name, value: form_value, class: 'form-control', data: { init: 'codemirror', mode: 'javascript' } %> <%= form.error_messages field_name %> <%= hint_of metadata %> </div> <% unless @codemirror_init %> <% @codemirror_init = true %> <% content_for :custom_javascript do %> <% javascript_tag do %> jQuery(document).off(readyPrefix('.codemirror_init')).on(readyPrefix('.codemirror_init'), function () { $('textarea[data-init="codemirror"]').each(function (index, element) { CodeMirror.fromTextArea(element, { mode: $(element).data('mode') }); }) }) <% end %> <% end %> <% end %>
Version data entries
26 entries across 13 versions & 1 rubygems