aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorIdan Amit <idan.amit@intl.att.com>2019-01-06 13:07:18 +0200
committerIdan Amit <idan.amit@intl.att.com>2019-01-07 17:34:23 +0200
commitebec31d19d829d93e5e0a96db3e54036c5bd1450 (patch)
treec48e474198d15b062a73e238de7cfd4505b82b54 /README.md
parentbbeb590aaff56ff3364b852f6149b220581b58a1 (diff)
Fixed readme issuedublin
Change-Id: I27c560f081daca8129534cc32bc869a24ec73b88 Issue-ID: SDC-2032 Signed-off-by: Idan Amit <idan.amit@intl.att.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9572095..43046fa 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ import {PluginPubSub} from 'sdc-pubsub'
```html
<!-- index.html -->
-<script src="./node_Modules/sdc-pubsub/dist/sdc-pubsub.js"></script>
+<script src="./node_modules/sdc-pubsub/dist/sdc-pubsub.js"></script>
```
```javascript
@@ -50,8 +50,8 @@ client.notify(“READY”)
// eventData.type will hold the event name that was notified by someone else
client.on((eventData,event) => {
if(eventData.type == ”WINDOW_OUT”) {
- //do logic
- }
+ //do logic
+ }
}
)
```