thelounge/client/js/commands/expand.js

9 lines
162 B
JavaScript
Raw Normal View History

"use strict";
const $ = require("jquery");
exports.input = function() {
$(".chan.active .toggle-button.toggle-preview:not(.opened)").click();
return true;
};