Skip to content

Commit

Permalink
[fix] Keyup event handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhanus3133 committed Jun 7, 2024
1 parent 8229268 commit 9f33f4f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ function initNotificationDropDown($) {
}
});

$(document).on('keyup', '*', function(e){
e.stopPropagation();
$(document).on('keyup', function(e){
if (e.keyCode !== 27) {
return;
}
Expand Down

0 comments on commit 9f33f4f

Please sign in to comment.