-
Notifications
You must be signed in to change notification settings - Fork 18
/
sortModal.html
22 lines (22 loc) · 873 Bytes
/
sortModal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<ons-page class="center" ng-controller="SortCtrl">
<div>
<div class="topcoat-list__item__line-height">
<label style="margin-right: 5px;">Sort by
<ons-select ng-model="sortBy">
<option value="artistName">Artist</option>
<option value="collectionName">Collection Name</option>
<option value="wrapperType">Media Item Name</option>
<option value="kind">Media Type</option>
</ons-select>
</label>
</div>
<div>
<label>Filter by
<ons-text-input type="text" ng-model="filterTerm"> </ons-text-input>
</label>
</div>
<div class="pad">
<ons-button class="button" ng-click="saveSort()" type="cta">Apply</ons-button>
</div>
</div>
</ons-page>