UNPKG

183 BJavaScriptView Raw
1/**
2 * Prevent the main input from blurring when a menu item or the clear button is
3 * clicked. (#226 & #310)
4 */
5export default function preventInputBlur(e) {
6 e.preventDefault();
7}
\No newline at end of file