mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 04:23:13 +00:00
9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
"use strict";
|
|
|
|
const socket = require("../socket");
|
|
const storage = require("../localStorage");
|
|
|
|
socket.on("sign-out", function() {
|
|
storage.remove("token");
|
|
location.reload();
|
|
});
|