thelounge/client/dist/js/helpers/isChannelCollapsed.js
2022-05-21 11:47:49 -07:00

13 lines
346 B
JavaScript

"use strict";
import store from "../store";
export default (network, channel) => {
if (!network.isCollapsed || channel.highlight || channel.type === "lobby") {
return false;
}
if (store.state.activeChannel && channel === store.state.activeChannel.channel) {
return false;
}
return true;
};
//# sourceMappingURL=isChannelCollapsed.js.map