Skip to content

Commit

Permalink
Fix bug 59414 (#3053)
Browse files Browse the repository at this point in the history
(cherry picked from commit ef6e3a8)
  • Loading branch information
K0R0L authored Oct 18, 2022
1 parent 96d08ac commit d1310f5
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 @@ -3378,6 +3378,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 d1310f5

Please sign in to comment.