Sha256: 0bf35df65b008673155b0447ff2c2288a666f45450818a9cfa68fa3fb52c0860

Contents?: true

Size: 729 Bytes

Versions: 5

Compression:

Stored size: 729 Bytes

Contents

<li class="<%= "completed" if todo.completed? %>" id="<%= dom_id(todo) %>">
  <div class="view">
    <%= form_for(todo, url: toggle_todo_path(todo), method: :post, remote: true) do |f| %>
      <%= f.check_box :completed, class: "toggle", "data-behavior" => "submit_on_check" %>
    <% end %>
    <label data-behavior="todo_title"><%= todo.title %></label>
    <%= form_for(todo, method: :delete, remote: true) do |f| %>
      <button type="submit" class="destroy"></button>
    <% end %>
  </div>
  <%= form_for(todo, remote: true, html: { "data-behavior" => "edit_todo_form" }) do |f| %>
    <%= f.text_field :title, class: "edit", "data-behavior" => "todo_title_input", "data-original-value" => todo.title %>
  <% end %>
</li>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
half-pipe-0.3.0.beta.2 examples/todomvc-rails/app/views/todos/_todo.html.erb
half-pipe-0.3.0.beta.1 examples/todomvc-rails/app/views/todos/_todo.html.erb
half-pipe-0.3.0.alpha.5 examples/todomvc-rails/app/views/todos/_todo.html.erb
half-pipe-0.3.0.alpha.4 examples/todomvc-rails/app/views/todos/_todo.html.erb
half-pipe-0.3.0.alpha.3 examples/todomvc-rails/app/views/todos/_todo.html.erb