Sha256: 92937c8467103604ed097ef3572f47b5e71ffca611166afb1793f3c8a3af95eb

Contents?: true

Size: 846 Bytes

Versions: 6

Compression:

Stored size: 846 Bytes

Contents

<%= f.label a, class: "form-control-label #{required?(f.object, a) ? 'required' : ''}"%>
<%= f.text_area a, class: "form-control #{'jsonarea_' + f.object.class.to_s + '_' + a.to_s}", required: required?(f.object, a), value: f.object.send(a).to_json %>

<script src="https://rawgithub.com/zaach/jsonlint/79b553fb65c192add9066da64043458981b3972b/lib/jsonlint.js"></script>
<script type="text/javascript">
  var jsonarea_<%= f.object.class.to_s + '_' + a.to_s %> = document.getElementsByClassName("jsonarea_<%= f.object.class.to_s + '_' + a.to_s %>")[0];
  var editor_jsonarea_<%= f.object.class.to_s + '_' + a.to_s %> = CodeMirror.fromTextArea(jsonarea_<%= f.object.class.to_s + '_' + a.to_s %>, {
    lineNumbers: true,
    theme: 'relax-seti',
    mode: "application/json",
    gutters: ["CodeMirror-lint-markers"],
    lint: true
  });
</script>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
slash_admin-1.0.5 app/views/slash_admin/fields/_json.html.erb
slash_admin-1.0.4 app/views/slash_admin/fields/_json.html.erb
slash_admin-1.0.3 app/views/slash_admin/fields/_json.html.erb
slash_admin-1.0.2 app/views/slash_admin/fields/_json.html.erb
slash_admin-1.0.1 app/views/slash_admin/fields/_json.html.erb
slash_admin-1.0 app/views/slash_admin/fields/_json.html.erb