mirror of https://github.com/zulip/zulip.git
23 lines
510 B
JavaScript
23 lines
510 B
JavaScript
import $ from "jquery";
|
|
|
|
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);
|
|
}
|