Sha256: 847c37eb4d745076eed1be8b3c22b88ca81b0e3aa384563666796362288c0e92

Contents?: true

Size: 381 Bytes

Versions: 12

Compression:

Stored size: 381 Bytes

Contents

<h1>List</h1>

<h2>{{ list.name }}</h2>

<table>
  <tr ng-repeat="item in items">
    <td>{{ item.name }}</td>
    <td><input ng-model="item.complete" type="checkbox" ng-checked="item.complete" ng-change="updateItem($event, item)"></td>
  </tr>
</table>

<h4>Add item to this list</h4>
<form ng-submit="createItem()">
  <input ng-model="item.name">
  <input type="submit">
</form>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
entangled-1.5.0 spec/dummy/public/views/lists/show.html
entangled-1.4.1 spec/dummy/public/views/lists/show.html
entangled-1.4.0 spec/dummy/public/views/lists/show.html
entangled-1.2.0 spec/dummy/public/views/lists/show.html
entangled-1.1.1 spec/dummy/public/views/lists/show.html
entangled-1.1.0 spec/dummy/public/views/lists/show.html
entangled-1.0.0 spec/dummy/public/views/lists/show.html
entangled-0.0.26 spec/dummy/public/views/lists/show.html
entangled-0.0.25 spec/dummy/public/views/lists/show.html
entangled-0.0.24 spec/dummy/public/views/lists/show.html
entangled-0.0.23 spec/dummy/public/views/lists/show.html
entangled-0.0.22 spec/dummy/public/views/lists/show.html