From fd404f5c1fd350331160669161ff6010d39865d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Fri, 3 May 2019 21:50:17 +0200 Subject: [PATCH] change socket url --- examples/Components/Routes/Collaboration/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Components/Routes/Collaboration/index.vue b/examples/Components/Routes/Collaboration/index.vue index c3d84fa0..c65c1919 100644 --- a/examples/Components/Routes/Collaboration/index.vue +++ b/examples/Components/Routes/Collaboration/index.vue @@ -65,8 +65,8 @@ export default { }, mounted() { - this.socket = io('wss://tiptap-sockets-2.glitch.me') - .on('document', data => this.initEditor(data)) + this.socket = io('wss://tiptap-sockets.glitch.me') + .on('init', data => this.initEditor(data)) .on('update', data => this.receiveData(data)) },