2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2018-06-08 14:24:17 +02:00
|
|
|
exports.initialize = function () {
|
|
|
|
if (!page_params.search_pills_enabled) {
|
|
|
|
return;
|
|
|
|
}
|
2020-07-15 01:29:15 +02:00
|
|
|
const container = $("#search_arrows");
|
2018-07-23 02:20:57 +02:00
|
|
|
exports.widget = search_pill.create_pills(container);
|
2018-07-14 16:10:00 +02:00
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
exports.widget.onPillRemove(() => {
|
2020-06-17 16:24:11 +02:00
|
|
|
if (exports.widget.items().length === 0) {
|
2020-07-03 10:38:24 +02:00
|
|
|
hashchange.go_to_location("");
|
2020-06-17 16:24:11 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
exports.widget.createPillonPaste(() => false);
|
2018-06-08 14:24:17 +02:00
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.search_pill_widget = exports;
|