mirror of
https://github.com/thelounge/thelounge
synced 2024-11-22 20:13:07 +00:00
a54a726e93
Co-Authored-By: Max Leiter <hello@maxleiter.com>
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
"use strict";
|
|
|
|
const $ = require("jquery");
|
|
|
|
exports.input = function() {
|
|
$(".chan.active .toggle-button.toggle-preview:not(.opened)").click();
|
|
return true;
|
|
};
|