|
7 | 7 |
|
8 | 8 | <link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.css" /> |
9 | 9 | <link rel="stylesheet" type="text/css" href="style/style.css"> |
| 10 | + <link rel="stylesheet" type="text/css" href="style/layout.css"> |
10 | 11 | </head> |
11 | 12 |
|
12 | 13 | <body> |
13 | | - <header class="ms-font-xxl"> |
14 | | - <div class="logo-text"> |
15 | | - <span class="logo-text-span">Microsoft Power BI JavaScript SDK - Live Sample</span> |
16 | | - </div> |
17 | | - <div id="oldSample"> |
18 | | - <a href="/static.html">Old Sample</a> |
| 14 | + <header> |
| 15 | + <div id="navbar"> |
| 16 | + <div class="logo-text"> |
| 17 | + <div class="logo-text-span">Microsoft Power BI – Report Embed Sample</div> |
| 18 | + </div> |
| 19 | + <div id="steps-nav-bar"> |
| 20 | + <div id="steps-ul-dev"> |
| 21 | + <ul id="steps-ul" class="steps-ul"> |
| 22 | + <li id="steps-auth" class="steps-li-active" onclick="OpenAuthStep();"> |
| 23 | + <div><a href="#">Authorize</a></div> |
| 24 | + <div class="step-div"> |
| 25 | + </div> |
| 26 | + </li> |
| 27 | + <li id="steps-embed" onclick="OpenEmbedStep();"> |
| 28 | + <div><a href="#">Embed</a></div> |
| 29 | + <div class="step-div"></div> |
| 30 | + </li> |
| 31 | + <li id="steps-interact" onclick="OpenInteractStep();"> |
| 32 | + <div><a href="#">Interact</a></div> |
| 33 | + <div class="step-div"></div> |
| 34 | + </li> |
| 35 | + </ul> |
| 36 | + </div> |
| 37 | + </div> |
19 | 38 | </div> |
20 | 39 | </header> |
21 | 40 |
|
22 | | - <div id="mainContent" class="jumbotron"> |
| 41 | + <div id="mainContent"> |
| 42 | + </div> |
| 43 | + |
| 44 | + <div id="oldSample"> |
| 45 | + <a href="/static.html">Old Sample</a> |
23 | 46 | </div> |
24 | 47 |
|
25 | 48 | <script src="/node_modules/jquery/dist/jquery.js"></script> |
26 | 49 | <script src="/node_modules/es6-promise/dist/es6-promise.js"></script> |
27 | | - <script src="/node_modules/fetch/lib/fetch.js"></script> |
28 | 50 | <script src="/node_modules/powerbi-client/dist/powerbi.js"></script> |
29 | 51 |
|
30 | 52 | <script src="scripts/codesamples.js"></script> |
31 | 53 |
|
32 | 54 | <script src="scripts/index.js"></script> |
33 | 55 | <script src="scripts/utils.js"></script> |
| 56 | + <script src="scripts/logger.js"></script> |
34 | 57 | <script src="scripts/session_utils.js"></script> |
35 | 58 |
|
36 | | - |
37 | 59 | <script src="scripts/report.js"></script> |
38 | 60 |
|
39 | 61 | <script src="scripts/step_authorize.js"></script> |
40 | 62 | <script src="scripts/step_embed.js"></script> |
41 | 63 | <script src="scripts/step_interact.js"></script> |
| 64 | + |
42 | 65 | </body> |
43 | 66 | </html> |
0 commit comments