Sha256: 2bb36b2cd12eb8cb41ce1cf4c69eb82e3c9bbb01250d2d0b803c76cd646966ff

Contents?: true

Size: 420 Bytes

Versions: 2

Compression:

Stored size: 420 Bytes

Contents

<div class="input-group">
  <input class="form-control" list="dictionary_<%= id %>" id="<%= id %>" name="<%= key %>" type="text" placeholder="<%= key %>" />
  <% if dictionary %>
  <datalist id="dictionary_<%= id %>">
    <% Dataclips::Engine.config.dictionaries[dictionary.to_sym].call(I18n.locale).each do |item| %>
      <option value="<%= item %>"><%= item %></option>
    <% end %>
  </datalist>
  <% end %>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dataclips-0.0.2 app/views/dataclips/application/_text.html.erb
dataclips-0.0.1 app/views/dataclips/application/_text.html.erb