-
Notifications
You must be signed in to change notification settings - Fork 18
/
settings.html
executable file
·69 lines (63 loc) · 2.5 KB
/
settings.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<ons-page class="center white" ng-controller="SettingsCtrl">
<ons-list>
<ons-list-item class="topcoat-list__item__line-height">
<ons-row>
<ons-col size="25">
Video
</ons-col>
<ons-col class="pad" size="75">
<label class="topcoat-switch" >
<input type="checkbox" class="topcoat-switch__input"
ng-model="video"
ng-checked="true">
<div class="topcoat-switch__toggle"></div>
</label>
</ons-col>
</ons-row>
</ons-list-item>
<ons-list-item class="topcoat-list__item__line-height">
<ons-row>
<ons-col size="25">
Audio
</ons-col>
<ons-col class="pad" size="75">
<label class="topcoat-switch">
<input type="checkbox" class="topcoat-switch__input"
ng-model="audio"
ng-checked="true">
<div class="topcoat-switch__toggle"></div>
</label>
</ons-col>
</ons-row>
</ons-list-item>
<ons-list-item class="topcoat-list__item__line-height">
<ons-row>
<ons-col size="25">
Volume
</ons-col>
<ons-col class="pad" size="75">
<label for="volume">
<i class="fa fa-volume-down"></i>
<input type="range" id="volume" class="topcoat-range">
<i class="fa fa-volume-up"></i>
</label>
</ons-col>
</ons-row>
</ons-list-item>
<ons-list-item class="topcoat-list__item__line-height">
<ons-row>
<ons-col size="25">
# Results
</ons-col>
<ons-col class="pad" size="75">
<ons-select id="results" ng-model="maxResults" ng-change="changeNumResults()">
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="200">200</option>
</ons-select>
</ons-col>
</ons-row>
</ons-list-item>
</ons-list>
</ons-page>