|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + |
| 8 | + <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css" /> |
| 9 | + <link type="text/css" rel="stylesheet" href="syntaxHighlighter/theme.css"> |
| 10 | + <link rel="stylesheet" type="text/css" href="style/style.css"> |
| 11 | + <link rel="stylesheet" type="text/css" href="style/layout.css"> |
| 12 | + <link rel="stylesheet" type="text/css" href="style/syntaxHighlighterOverride.css"> |
| 13 | + |
| 14 | +</head> |
| 15 | + |
| 16 | +<body> |
| 17 | + <header> |
| 18 | + <div id="navbar"> |
| 19 | + <div class="logo-text"> |
| 20 | + <div class="logo-text-span">Microsoft Power BI – Report Embed Sample</div> |
| 21 | + </div> |
| 22 | + <div id="top-nav-bar"> |
| 23 | + <div id="top-ul-dev"> |
| 24 | + <ul id="top-ul" class="top-ul"> |
| 25 | + <li id="top-sample" class="top-li-active" onclick="OpenSampleSection();"> |
| 26 | + <div><a href="#">Sample</a></div> |
| 27 | + </li> |
| 28 | + <li id="top-docs" onclick="OpenDocumentationSection();"> |
| 29 | + <div><a href="#">Documentation</a></div> |
| 30 | + </li> |
| 31 | + </ul> |
| 32 | + </div> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + </header> |
| 36 | + |
| 37 | + <div id="contentWrapper"> |
| 38 | + <div id ="sampleContent" class="content"> |
| 39 | + </div> |
| 40 | + |
| 41 | + <div id ="documentationContent" class="content"> |
| 42 | + </div> |
| 43 | + |
| 44 | + <div id ="anyReportContent" class="content"> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + |
| 48 | + <script src="../node_modules/jquery/dist/jquery.js"></script> |
| 49 | + <script src="../node_modules/es6-promise/dist/es6-promise.js"></script> |
| 50 | + <script src="../node_modules/powerbi-client/dist/powerbi.js"></script> |
| 51 | + |
| 52 | + <script src="scripts/codesamples.js"></script> |
| 53 | + |
| 54 | + <script src="scripts/index.js"></script> |
| 55 | + <script src="scripts/utils.js"></script> |
| 56 | + <script src="scripts/logger.js"></script> |
| 57 | + <script src="scripts/session_utils.js"></script> |
| 58 | + <script src="scripts/function_mapping.js"></script> |
| 59 | + |
| 60 | + <script src="scripts/report.js"></script> |
| 61 | + |
| 62 | + <script src="scripts/step_authorize.js"></script> |
| 63 | + <script src="scripts/step_embed.js"></script> |
| 64 | + <script src="scripts/step_interact.js"></script> |
| 65 | + |
| 66 | +</body> |
| 67 | +</html> |
0 commit comments