Closed
Bug 1880002
Opened 1 year ago
Closed 1 year ago
control+e doesn't work in Summary field
Categories
(bugzilla.mozilla.org :: User Interface, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: arai, Assigned: arai)
Details
Attachments
(1 file, 1 obsolete file)
$(window)
.keydown(function(event) {
if (!(event.ctrlKey || event.metaKey))
return;
switch(String.fromCharCode(event.which).toLowerCase()) {
// ctrl+e or meta+e = enter edit mode
case 'e':
if (event.shiftKey)
return;
// don't conflict with text input shortcut
if (document.activeElement.nodeNode == 'INPUT' || document.activeElement.nodeName == 'TEXTAREA')
return;
it should check nodeName
Comment 1•1 year ago
|
||
| Assignee | ||
Comment 2•1 year ago
|
||
| Assignee | ||
Updated•1 year ago
|
Attachment #9379850 -
Attachment is obsolete: true
Comment 3•1 year ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 1 year ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•