-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular-slider.html
More file actions
executable file
·39 lines (34 loc) · 975 Bytes
/
angular-slider.html
File metadata and controls
executable file
·39 lines (34 loc) · 975 Bytes
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
<div ng-show="index.valid">
<div ng-init ="">
<div class="row-fluid">
<div class="span2" style="margin:0">
<div class="well well-small min-max" >
<strong>Min</strong><br/>{{index.min}}
</div>
</div>
<div class="span8" style="margin:0">
<!--<ul class="scale" style="">
<li ng-repeat="stepper in index.stepper" >
{{!stepper.value}}s
</li>
</ul> -->
<div class="angular-slider">
</div>
</div>
<div class="span2" >
<div class="well well-small min-max" >
<strong>Max</strong><br/>{{index.max}}
</div>
</div>
Lower Bound:
<input type="text" name="input" ng-trim="true" >
<br/>
Higher Bound:
<input type="text" name="input" ng-trim="true">
</div>
</div>
<div class="row-fluid">
<div class="alert alert-error span6 alertBox" ng-show="index.alert" style="float:left;width:50%;">
{{index.alert}}
</div>
</div>