Skip to content

Commit

Permalink
Step 18.14: Refactor PartiesSort
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela authored and Dotan Simha committed Nov 22, 2016
1 parent 66d431b commit 14d3232
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions imports/ui/components/partiesSort/partiesSort.html
@@ -1,4 +1,10 @@
<select ng-model="partiesSort.order" ng-change="partiesSort.changed()" class="form-control">
<option value="1">Ascending</option>
<option value="-1">Descending</option>
</select>
<md-input-container>
<md-select ng-model="partiesSort.order" ng-change="partiesSort.changed()">
<md-option value="1">
Ascending
</md-option>
<md-option value="-1">
Descending
</md-option>
</md-select>
</md-input-container>

0 comments on commit 14d3232

Please sign in to comment.