Skip to content

Commit

Permalink
Fix bug 59414
Browse files Browse the repository at this point in the history
  • Loading branch information
K0R0L committed Oct 18, 2022
1 parent 1e09fb6 commit ef6e3a8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/apiBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -3451,6 +3451,9 @@
if (!document.activeElement || !document.createEvent || (document.activeElement.id === "area_id"))
return;

if (!document.activeElement.dispatchEvent)
return;

var e = document.createEvent("HTMLEvents");
e.initEvent("blur", true, true);
e.eventName = "blur";
Expand Down

0 comments on commit ef6e3a8

Please sign in to comment.