UNPKG

288 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports["default"] = preventInputBlur;
7
8/**
9 * Prevent the main input from blurring when a menu item or the clear button is
10 * clicked. (#226 & #310)
11 */
12function preventInputBlur(e) {
13 e.preventDefault();
14}
\No newline at end of file