diff options
author | bob <bcz@cs.brown.edu> | 2019-12-10 11:59:23 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-12-10 11:59:23 -0500 |
commit | 810e5a128d9832f61c3841da989c049ba5d76676 (patch) | |
tree | a12600b1fb99148d4ed4ddd13f01a5ffbfbc94c2 | |
parent | 493528a31d6bf65a8e1ffc503804c83665d511ca (diff) |
fix for commands in nested notes.
-rw-r--r-- | src/client/util/RichTextSchema.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/RichTextSchema.tsx b/src/client/util/RichTextSchema.tsx index 4a75d6e49..f41846038 100644 --- a/src/client/util/RichTextSchema.tsx +++ b/src/client/util/RichTextSchema.tsx @@ -762,7 +762,7 @@ export class DashDocView { } }); const self = this; - this._dashSpan.onkeydown = function (e: any) { e.stopPropagation(); }; + this._dashSpan.onkeydown = function (e: any) { }; this._dashSpan.onkeypress = function (e: any) { e.stopPropagation(); }; this._dashSpan.onwheel = function (e: any) { e.preventDefault(); }; this._dashSpan.onkeyup = function (e: any) { e.stopPropagation(); }; |