hardlounge/client/js/socket-events/msg_special.js

11 lines
266 B
JavaScript
Raw Normal View History

2018-07-10 09:16:24 +00:00
"use strict";
const socket = require("../socket");
2019-08-04 11:03:04 +00:00
const {vueApp, findChannel} = require("../vue");
2018-07-10 09:16:24 +00:00
socket.on("msg:special", function(data) {
2019-10-25 21:37:40 +00:00
const channel = findChannel(data.chan);
channel.channel.data = data.data;
vueApp.switchToChannel(channel.channel);
2018-07-10 09:16:24 +00:00
});