Skip to content

Commit 35f8324

Browse files
committed
chore(peerjs): upgrade peerjs on demos to latest version 1.5.4
1 parent 82853bd commit 35f8324

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

demo/accelerometer-3d/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h1 class="title">
102102
</div>
103103
</div>
104104
<script src="https://unpkg.com/[email protected]/qrcode.min.js"></script>
105-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
105+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
106106
<script type="module" src="./js/demo.accelerometer-3d.jsx"></script>
107107
</body>
108108
</html>

demo/counter-react/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h1 class="title">
106106
</div>
107107
</div>
108108
<script src="https://unpkg.com/[email protected]/qrcode.min.js"></script>
109-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
109+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
110110
<script type="module" src="./js/demo.react-counter.jsx"></script>
111111
</body>
112112
</html>

demo/counter-vanilla/master.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ <h1 class="title">
132132
<footer-display from="2022"></footer-display>
133133
</template>
134134
<script src="https://unpkg.com/[email protected]/qrcode.min.js"></script>
135-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
135+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
136136
<script type="module" src="./js/master.js"></script>
137137
</body>
138138
</html>

demo/counter-vanilla/remote.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h1 class="title">
7777
<div class="static-content-wrapper"></div>
7878
<footer-display from="2022"></footer-display>
7979
</template>
80-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
80+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
8181
<script type="module" src="./js/remote.js"></script>
8282
</body>
8383
</html>

demo/counter-vue/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h1 class="title">
106106
</div>
107107
</div>
108108
<script src="https://unpkg.com/[email protected]/qrcode.min.js"></script>
109-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
109+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
110110
<script type="module" src="./js/demo.vue-counter.js"></script>
111111
</body>
112112
</html>

packages/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This package is the core one. Implementations for popular frameworks such as rea
2121
Add the peerjs library as a script tag in your html page. You'll have access to `Peer` constructor.
2222

2323
```html
24-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
24+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
2525
```
2626

2727
Direct link to the [demo](https://webrtc-remote-control.vercel.app/counter-vanilla/master.html) source code: [master.js](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-vanilla/js/master.js) / [remote.js](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-vanilla/js/remote.js)

packages/react/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This package relies on [@webrtc-remote-control/core](https://github.com/topheman
2121
Add the peerjs library as a script tag in your html page. You'll have access to `Peer` constructor.
2222

2323
```html
24-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
24+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
2525
```
2626

2727
Direct link to the [demo](https://webrtc-remote-control.vercel.app/counter-react/index.html) source code: [App.jsx](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-react/js/App.jsx) / [Master.jsx](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-react/js/Master.jsx) / [Remote.jsx](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-react/js/Remote.jsx)

packages/vue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This package relies on [@webrtc-remote-control/core](https://github.com/topheman
2121
Add the peerjs library as a script tag in your html page. You'll have access to `Peer` constructor.
2222

2323
```html
24-
<script src="https://unpkg.com/peerjs@1.4.6/dist/peerjs.min.js"></script>
24+
<script src="https://unpkg.com/peerjs@1.5.4/dist/peerjs.min.js"></script>
2525
```
2626

2727
Direct link to the [demo](https://webrtc-remote-control.vercel.app/counter-vue/index.html) source code: [App.vue](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-vue/js/App.vue) / [Master.vue](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-vue/js/Master.vue) / [Remote.vue](https://github.com/topheman/webrtc-remote-control/blob/master/demo/counter-vue/js/Remote.vue)

0 commit comments

Comments
 (0)