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

9 lines
190 B
JavaScript
Raw Normal View History

2018-07-10 09:16:24 +00:00
"use strict";
const socket = require("../socket");
2018-07-10 09:37:48 +00:00
const {findChannel} = require("../vue");
2018-07-10 09:16:24 +00:00
socket.on("msg:special", function(data) {
2018-07-10 09:37:48 +00:00
findChannel(data.chan).channel.data = data.data;
2018-07-10 09:16:24 +00:00
});