Skip to content

Commit

Permalink
Also stop propagation on keyup event in dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Nov 21, 2017
1 parent c5db842 commit 52b252e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program/js/app.js
Expand Up @@ -7880,7 +7880,7 @@ function rcube_webmail()
});

// Don't propagate keyboard events to the UI below the dialog (#6055)
popup.parent().on('keydown', function(e) { e.stopPropagation(); });
popup.parent().on('keydown keyup', function(e) { e.stopPropagation(); });

return popup;
};
Expand Down

0 comments on commit 52b252e

Please sign in to comment.