You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ This exposes two globals `Powerbi` which is the service class and `powerbi` whic
30
30
# Embedding
31
31
32
32
## PaaS (Platform as a Service)
33
-
When using PaaS model the tokens issued are for a specific report or tile and the token should be associated with the embed url on the same element to ensure each has a unique token allows embeding multiple reports using the same service instance.
33
+
When using PaaS model the tokens issued are for a specific report or tile and the token should be associated with the embed url on the same element to ensure each has a unique token allows embedding multiple reports using the same service instance.
34
34
35
35
```
36
36
<div
@@ -41,7 +41,7 @@ When using PaaS model the tokens issued are for a specific report or tile and th
41
41
```
42
42
43
43
## SaaS (Software as a Service)
44
-
When using SaaS model the tokens issued are for a specific user who can view many types of visuals. This means you can add this as a global token reused for all embeded visuals as shown below:
44
+
When using SaaS model the tokens issued are for a specific user who can view many types of visuals. This means you can add this as a global token reused for all embedded visuals as shown below:
45
45
46
46
```
47
47
<script>
@@ -65,7 +65,7 @@ powerbi.enableAutoEmbed();
65
65
```
66
66
See: CHANGELOG.md for more details
67
67
68
-
If your app is dyanamically adding new embed components after page load you will need to manually initialize them via JavaScript.
68
+
If your app is dynamically adding new embed components after page load you will need to manually initialize them via JavaScript.
69
69
70
70
# Embed configuration and other options
71
71
@@ -97,7 +97,7 @@ To override the default size of the embeds simply add a CSS class attribute or i
97
97
### Find all new Power BI components and initialize them.
98
98
`powerbi.init();`
99
99
100
-
By default this will look for elements within the `document.body`; however you can pass optional DOM element to scope the intialization to smaller subset.
100
+
By default this will look for elements within the `document.body`; however you can pass optional DOM element to scope the initialization to smaller subset.
101
101
102
102
```
103
103
var pageContainer = document.getElementsById('#pageContainer');
0 commit comments