We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b992c99 commit e63692cCopy full SHA for e63692c
TrelloA11yFixes.user.js
@@ -115,7 +115,7 @@ function moveCard() {
115
116
// Add some keyboard shortcuts.
117
document.addEventListener("keydown", function(evt) {
118
- if (document.activeElement.nodeName == "INPUT" || document.activeElement.isContentEditable) {
+ if (document.activeElement.nodeName == "INPUT" || document.activeElement.nodeName == "TEXTAREA" || document.activeElement.isContentEditable) {
119
return false;
120
}
121
if (evt.key == "M") {
0 commit comments