thelounge/client/dist/js/helpers/isChannelCollapsed.js

13 lines
346 B
JavaScript
Raw Normal View History

2022-05-02 09:50:13 +02:00
"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