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

12 lines
292 B
JavaScript
Raw Normal View History

2018-07-10 09:16:24 +00:00
"use strict";
2019-11-16 17:24:03 +00:00
import socket from "../socket";
import store from "../store";
import {switchToChannel} from "../router";
2018-07-10 09:16:24 +00:00
socket.on("msg:special", function(data) {
const channel = store.getters.findChannel(data.chan);
2019-10-25 21:37:40 +00:00
channel.channel.data = data.data;
2019-11-11 19:18:55 +00:00
switchToChannel(channel.channel);
2018-07-10 09:16:24 +00:00
});