mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-20 15:34:49 +02:00
Allow tabbing beyond the raw tag editor (close #4233)
This commit is contained in:
@@ -364,8 +364,10 @@ export function uiRawTagEditor(context) {
|
||||
|
||||
|
||||
function pushMore() {
|
||||
// if pressing Tab on the last value field with content, add a blank row
|
||||
if (d3_event.keyCode === 9 && !d3_event.shiftKey &&
|
||||
list.selectAll('li:last-child input.value').node() === this) {
|
||||
list.selectAll('li:last-child input.value').node() === this &&
|
||||
utilGetSetValue(d3_select(this))) {
|
||||
addTag();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user