diff options
Diffstat (limited to 'ext/mixed/js/document-util.js')
| -rw-r--r-- | ext/mixed/js/document-util.js | 36 | 
1 files changed, 0 insertions, 36 deletions
| diff --git a/ext/mixed/js/document-util.js b/ext/mixed/js/document-util.js index 0c0a2153..513a0c05 100644 --- a/ext/mixed/js/document-util.js +++ b/ext/mixed/js/document-util.js @@ -305,42 +305,6 @@ class DocumentUtil {          return true;      } -    static getModifierKeys(os) { -        switch (os) { -            case 'win': -                return [ -                    ['alt', 'Alt'], -                    ['ctrl', 'Ctrl'], -                    ['shift', 'Shift'], -                    ['meta', 'Windows'] -                ]; -            case 'mac': -                return [ -                    ['alt', 'Opt'], -                    ['ctrl', 'Ctrl'], -                    ['shift', 'Shift'], -                    ['meta', 'Cmd'] -                ]; -            case 'linux': -            case 'openbsd': -            case 'cros': -            case 'android': -                return [ -                    ['alt', 'Alt'], -                    ['ctrl', 'Ctrl'], -                    ['shift', 'Shift'], -                    ['meta', 'Super'] -                ]; -            default: // 'unknown', etc -                return [ -                    ['alt', 'Alt'], -                    ['ctrl', 'Ctrl'], -                    ['shift', 'Shift'], -                    ['meta', 'Meta'] -                ]; -        } -    } -      static isMetaKeySupported(os, browser) {          return !(browser === 'firefox' || browser === 'firefox-mobile') || os === 'mac';      } |