Files
zulip/static/js/search_pill_widget.js
Ryan Rehman e2417b5b37 search: Don't create search pills on paste.
This is helpful because if the user pastes multiple queries in the
searchbox and there are invalid search operators, then it is visible
through the typeahead.
2020-05-26 22:04:36 -07:00

18 lines
425 B
JavaScript

exports.initialize = function () {
if (!page_params.search_pills_enabled) {
return;
}
const container = $('#search_arrows');
exports.widget = search_pill.create_pills(container);
exports.widget.onPillRemove(function () {
search.narrow_or_search_for_term();
});
exports.widget.createPillonPaste(function () {
return false;
});
};
window.search_pill_widget = exports;