From 9db468748fffb39b3e810140b5cca535e012883b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Fri, 31 May 2019 12:03:14 +0200 Subject: [PATCH] fix sockets url --- examples/Components/Routes/Collaboration/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Components/Routes/Collaboration/index.vue b/examples/Components/Routes/Collaboration/index.vue index 27b36191..f49c19f3 100644 --- a/examples/Components/Routes/Collaboration/index.vue +++ b/examples/Components/Routes/Collaboration/index.vue @@ -84,7 +84,7 @@ export default { mounted() { // server implementation: https://glitch.com/edit/#!/tiptap-sockets - this.socket = io('wss://tiptap-sockets-dev.glitch.me') + this.socket = io('wss://tiptap-sockets.glitch.me') // get the current document and its version .on('init', data => this.onInit(data)) // send all updates to the collaboration extension