-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
72 lines (66 loc) · 2.77 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
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bold Reports JavaScript Demos & Tutorials</title>
<meta charset="utf-8">
<meta name="title" property="og:title" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description" property="og:description" content="Explore Bold Reports JavaScript Designer and Viewer through various use case scenario demos, example applications, and tutorial samples." />
<meta name="keywords" content="Bold Reports">
<meta property="og:image" content="https://demos.boldreports.com/Images/og_embedded_javascript_examples.png" alt="Reports sample for JavaScript" />
<meta property="og:image:secure_url" content="https://demos.boldreports.com/Images/og_embedded_javascript_examples.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<script>
function validateBrowser() {
var uaValidate = navigator.userAgent.match(/(MSIE |Trident.*rv[ :])([0-9]+)/);
if (uaValidate != null)
return uaValidate[2];
return null;
}
var ieVer = validateBrowser();
if (ieVer != null && ieVer < 11) {
if (!location.origin) {
location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port : '');
location.href = location.origin + '/error.html';
}
}
</script>
<link rel="stylesheet" href="app.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<div hidden id="reports-analytics" data-queue="Bold Reports - Demos - JavaScript"></div>
<div class="splash">
<div class="message">JavaScript Reports</div>
<div class="loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
<div class="ej-body e-hidden">
<ej-header></ej-header>
<div class="mobile-overlay"></div>
<div class="ej-overlay"></div>
<div class="ej-main-parent-content">
<ej-sidebar></ej-sidebar>
<div class="ej-main-child-content">
<ej-main-content></ej-main-content>
</div>
</div>
</div>
<style>
.e-reportviewer .e-reportviewer-toolbarcontainer .e-reportviewer-toolbarul.e-show {
border-style: none;
float: right;
}
.e-reportviewer-toolbarcontainer.e-toolbar {
padding-right: 0px;
}
</style>
<script src="polyfills.js"></script>
<script src="app.js"></script>
</body>
</html>