@axsdk/browser 0.1.8 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/axsdk-browser-frame.js +133 -149
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ Both files **must be served from the same path prefix** — the loader automatic
|
|
|
63
63
|
|
|
64
64
|
```html
|
|
65
65
|
<!-- Both files must live at the same URL prefix -->
|
|
66
|
-
<script src="https://unpkg.com/@axsdk/browser
|
|
66
|
+
<script src="https://unpkg.com/@axsdk/browser/dist/axsdk-browser.js"></script>
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
---
|
|
@@ -119,7 +119,7 @@ AXSDKBrowser.init(config: AXSDKBrowserConfig): void
|
|
|
119
119
|
#### Example with `axHandler`
|
|
120
120
|
|
|
121
121
|
```html
|
|
122
|
-
<script src="https://unpkg.com/@axsdk/browser/axsdk-browser.js"></script>
|
|
122
|
+
<script src="https://unpkg.com/@axsdk/browser/dist/axsdk-browser.js"></script>
|
|
123
123
|
<script>
|
|
124
124
|
AXSDKBrowser.init({
|
|
125
125
|
apiKey: 'YOUR_API_KEY',
|