forked from microsoft/PowerBI-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (58 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
70 lines (58 loc) · 2.46 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="syntaxHighlighter/theme.css">
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="stylesheet" type="text/css" href="style/syntaxHighlighterOverride.css">
</head>
<body>
<header>
<div id="navbar">
<div class="logo-text">
<div class="logo-text-span">Microsoft Power BI – Report Embed Sample</div>
</div>
<div id="top-nav-bar">
<div id="top-ul-dev">
<ul id="top-ul" class="top-ul">
<li id="top-sample" class="top-li-active" onclick="OpenSampleSection();">
<div><a href="#">Sample</a></div>
</li>
<li id="top-anyReport" class="top-li-active" onclick="OpenAnyReportSection();">
<div><a href="#">Any Report</a></div>
</li>
<li id="top-docs" onclick="OpenDocumentationSection();">
<div><a href="#">Documentation</a></div>
</li>
</ul>
</div>
</div>
</div>
</header>
<div id="contentWrapper">
<div id ="sampleContent" class="content">
</div>
<div id ="documentationContent" class="content">
</div>
<div id ="anyReportContent" class="content">
</div>
</div>
<script src="../node_modules/jquery/dist/jquery.js"></script>
<script src="../node_modules/es6-promise/dist/es6-promise.js"></script>
<script src="../node_modules/powerbi-client/dist/powerbi.js"></script>
<script src="scripts/codesamples.js"></script>
<script src="scripts/index.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/logger.js"></script>
<script src="scripts/session_utils.js"></script>
<script src="scripts/function_mapping.js"></script>
<script src="scripts/report.js"></script>
<script src="scripts/step_authorize.js"></script>
<script src="scripts/step_embed.js"></script>
<script src="scripts/step_interact.js"></script>
</body>
</html>