zulip/static/js/search_pill_widget.js

21 lines
485 B
JavaScript
Raw Normal View History

import * as hashchange from "./hashchange";
import * as search_pill from "./search_pill";
export let widget;
export function initialize() {
if (!page_params.search_pills_enabled) {
return;
}
const container = $("#search_arrows");
widget = search_pill.create_pills(container);
widget.onPillRemove(() => {
if (widget.items().length === 0) {
hashchange.go_to_location("");
}
});
widget.createPillonPaste(() => false);
}