diff options
Diffstat (limited to 'ext/mixed/js/display.js')
| -rw-r--r-- | ext/mixed/js/display.js | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index 32081c70..783af7d8 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -338,7 +338,7 @@ class Display {      }      onKeyDown(e) { -        const key = Display.getKeyFromEvent(e); +        const key = DOM.getKeyFromEvent(e);          const handler = this._onKeyDownHandlers.get(key);          if (typeof handler === 'function') {              if (handler(e)) { @@ -964,11 +964,6 @@ class Display {          return elementRect.top - documentRect.top;      } -    static getKeyFromEvent(event) { -        const key = event.key; -        return (typeof key === 'string' ? (key.length === 1 ? key.toUpperCase() : key) : ''); -    } -      async _getNoteContext() {          const documentTitle = await this.getDocumentTitle();          return { |