-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvertiCal.html
63 lines (56 loc) · 1.71 KB
/
vertiCal.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
<template name="vertiCal">
<div id="vertiCal">
<div class="hidden-sm hidden-xs">
{{> vertiCalDefaultHeader}}
<div id="vertiCalScrollable" class="btn-group-vertical btn-block">
{{> vertiCalDefaultUpArrow}}
{{#each dates}}
{{> vertiCalDefaultDateContent}}
{{/each}}
{{> vertiCalDefaultDownArrow}}
</div>
{{> vertiCalJumpToToday}}
</div>
{{> vertiCalJumpToDate}}
</div>
</template>
<template name="vertiCalDefaultHeader">
<div class="vertiCalHeader text-center">
<h4>{{text}}</h4>
</div>
</template>
<template name="vertiCalDefaultUpArrow">
<div class="btn btn-default vertiCalControl">
<i class="fa fa-sort-asc fa-fw"></i>
</div>
</template>
<template name="vertiCalDefaultDateContent">
<div class="btn btn-default {{active}} text-center">
{{#if customBtnContents}}
{{> customBtnContents}}
{{else}}
{{text}}
{{/if}}
</div>
</template>
<template name="vertiCalDefaultDownArrow">
<div class="btn btn-default vertiCalControl">
<i class="fa fa-sort-desc fa-fw"></i>
</div>
</template>
<template name="vertiCalJumpToToday">
<div id="vertiCalJumpToToday" class="btn btn-default btn-block">
Jump to Today
</div>
</template>
<template name="vertiCalJumpToDate">
<div class="btn-block btn-group-vertical input-group-vertical">
<input id="jumpToDateInput" class="form-control" value="{{value}}" type="date"/>
<div class="visible-xs visible-sm">
<button id="jumpToDateSubmit" class="btn btn-default btn-block">Jump to Date</button>
</div>
<div class="hidden-xs hidden-sm">
<button id="jumpToDateSubmit" class="btn btn-default btn-block">Jump</button>
</div>
</div>
</template>