-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathibeacons.html
More file actions
45 lines (44 loc) · 1.15 KB
/
ibeacons.html
File metadata and controls
45 lines (44 loc) · 1.15 KB
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
<div ng-controller="ibeaconsCtrl">
<div class="modal fade" id="validate">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Delete iBeacon</h4>
</div>
<div class="modal-body">
<p>Are you sure you want to delete this iBeacon ?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" id="popoverValidate">Delete</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<table class="table table-bordered" id="beaconsTable">
<thead>
<tr>
<th>
Identifier
</th>
<th>
Minor
</th>
<th>
Major
</th>
<th>
txCalibrated
</th>
<th>
Delete
</th>
</tr>
</thead>
<tbody>
<!-- I have to let this empty row or when i add a row (in iBeacons.js), the row goes in <thead> -->
<tr></tr>
</tbody>
</table>
</div>