UNPKG

thelounge

Version:

The self-hosted Web IRC client

12 lines (9 loc) 281 B
"use strict"; const $ = require("jquery"); const socket = require("../socket"); socket.on("open", function(id) { // Another client opened the channel, clear the unread counter $("#sidebar").find(".chan[data-id='" + id + "'] .badge") .removeClass("highlight") .empty(); });