Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ziscloud committed Sep 29, 2014
1 parent bec0f2e commit fa2ba7a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ angular
```
* custom filter
* in the view
```html
<select class="filter-status" ng-model='filter.status' ng-change="filterByStatus()">
<option></option>
<option value="active">Active</option>
<option value="disabled">Disabled</option>
<option value="suspended">Suspended</option>
</select>
<a href="#clear" class="clear-filter" title="clear filter" ng-click="clearFilter()">[clear]</a>
<table class="table footable" data-before-filtering="filteringEventHandler">
```
```html
<select class="filter-status" ng-model='filter.status' ng-change="filterByStatus()">
<option></option>
<option value="active">Active</option>
<option value="disabled">Disabled</option>
<option value="suspended">Suspended</option>
</select>
<a href="#clear" class="clear-filter" title="clear filter" ng-click="clearFilter()">[clear]</a>
<table class="table footable" data-before-filtering="filteringEventHandler">
```
* in the controller
```javascript
.controller('exampleCtrl', function($scope) {
Expand Down

0 comments on commit fa2ba7a

Please sign in to comment.