fixed typo on VueSocketIOListener

This commit is contained in:
Michael Johansen 2019-03-06 23:14:54 +01:00 committed by GitHub
parent 68d4e5570b
commit 00d41c9308
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@ export default class VueSocketIOListener {
this.onEvent(event, args) this.onEvent(event, args)
}; };
VueSocketIOListenler.staticEvents.forEach(event => this.io.on(event, args => this.onEvent(event, args))) VueSocketIOListener.staticEvents.forEach(event => this.io.on(event, args => this.onEvent(event, args)))
} }
/** /**