diff options
author | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-04-15 18:53:25 -0400 |
---|---|---|
committer | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-04-15 18:53:25 -0400 |
commit | 47ff32717a209e706b39265fbdc857f398094fe8 (patch) | |
tree | 99bf87c39144af68c385ffad1bf0f81a88fc95b8 /src/client/views/nodes/FormattedTextBox.tsx | |
parent | e981d9d228507fc573febc997eb691a5428126e8 (diff) |
updated list making and (un)indenting key commands) in prosemirror mapping
Diffstat (limited to 'src/client/views/nodes/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/FormattedTextBox.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/FormattedTextBox.tsx b/src/client/views/nodes/FormattedTextBox.tsx index be530416e..7e72c6398 100644 --- a/src/client/views/nodes/FormattedTextBox.tsx +++ b/src/client/views/nodes/FormattedTextBox.tsx @@ -241,6 +241,7 @@ export class FormattedTextBox extends React.Component<(FieldViewProps & Formatte } onKeyPress(e: React.KeyboardEvent) { e.stopPropagation(); + if (e.keyCode === 9) e.preventDefault(); // stop propagation doesn't seem to stop propagation of native keyboard events. // so we set a flag on the native event that marks that the event's been handled. // (e.nativeEvent as any).DASHFormattedTextBoxHandled = true; |