We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6f7795 commit 5fef5fcCopy full SHA for 5fef5fc
extensions/BugModal/web/bug_modal.js
@@ -736,6 +736,9 @@ $(function() {
736
.keydown(function(event) {
737
if (!(event.ctrlKey || event.metaKey))
738
return;
739
+ // don't conflict with text input shortcut
740
+ if (document.activeElement.nodeNode == 'INPUT' || document.activeElement.nodeName == 'TEXTAREA')
741
+ return;
742
if (String.fromCharCode(event.which).toLowerCase() == 'e') {
743
if ($('#cancel-btn:visible').length == 0) {
744
event.preventDefault();
0 commit comments