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

12 lines
292 B
JavaScript
Raw Normal View History

2018-07-10 12:16:24 +03:00
"use strict";
2019-11-16 19:24:03 +02:00
import socket from "../socket";
import store from "../store";
import {switchToChannel} from "../router";
2018-07-10 12:16:24 +03: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 21:18:55 +02:00
switchToChannel(channel.channel);
2018-07-10 12:16:24 +03:00
});