change socket url

This commit is contained in:
Philipp Kühn 2019-05-03 21:50:17 +02:00
parent e9e50a2e75
commit fd404f5c1f

View File

@ -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))
},