Skip to content

Commit

Permalink
Smile-SA#2765, WIP: Fix deprecated .blur() event
Browse files Browse the repository at this point in the history
  • Loading branch information
vahonc committed Dec 20, 2022
1 parent 83e9881 commit 4464a6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ function setRowVisibility(id, isVisible)
if (isVisible) {
tr.show();
} else {
tr.blur();
tr.trigger('blur');
tr.hide();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ define([
this.element.trigger('focus');
}
this.autoComplete.hide();
$('#search').blur();
$('#search').trigger('blur');
this._updateAriaHasPopup(false);
}, this),250);
}, this));
Expand Down

0 comments on commit 4464a6d

Please sign in to comment.