-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (56 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<script src="sdk/scripts/VSS.SDK.js"></script>
<style>
.table-insights
{
width: 100%;
}
.table-insights thead
{
font-weight: bold;
}
.table-insights tr
{
border-bottom:1px solid #e0e1e2;
}
.table-insights td
{
padding:3px;
}
.meta-date
{
color: gray;
font-size: small;
}
</style>
</head>
<body>
<div class="widget">
<h2 class="title" id="widgetTitle" style="margin-bottom: 4px;">Recent custom events</h2>
<div class="description" style="margin-bottom: 5px;" id="widgetSubTitle">From your Application Insights resource</div>
<div class="content">
<table id="items" class="table table-insights">
<thead>
<td>Event Name</td>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</body>
</html>
<script type="text/javascript">
VSS.init(
{
explicitNotifyLoaded: true,
setupModuleLoader: true,
usePlatformScripts: true,
usePlatformStyles: true
});
VSS.ready(function () {
require(["src/main"], function (main) { });
});
</script>