mirror of
https://github.com/thelounge/thelounge
synced 2025-02-18 14:18:26 +00:00
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
"use strict";
|
|
|
|
const $ = require("jquery");
|
|
|
|
exports.input = function() {
|
|
$(".chan.active .toggle-button.toggle-preview.opened").click();
|
|
return true;
|
|
};
|