From: Scott Worley Date: Thu, 27 Jan 2022 06:17:43 +0000 (-0800) Subject: Explicitly remove the completeEdit onblur event listener X-Git-Url: http://git.scottworley.com/vopamoi/commitdiff_plain/8ca3cda9da4db4ac0bd05462b54e04fabbf75451?ds=sidebyside;hp=8ca3cda9da4db4ac0bd05462b54e04fabbf75451 Explicitly remove the completeEdit onblur event listener When the completeEdit is invoked by keystroke, we don't want it invoked a second time as a result of its own action removing the input field. Firefox does *not* call the "blur" event when a focused input element is removed. Chromium *does* call the "blur" event when a focused input element is removed. So this is needed for Chromium. ---