A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/vuejs/vue/commit/4378fc5124067c2b3a3517dd7f527edd9be2ad37 below:

fix keyName checking for arrow keys in IE11 · vuejs/vue@4378fc5 · GitHub

File tree Expand file treeCollapse file tree 1 file changed

+5

-4

lines changed

Filter options

Expand file treeCollapse file tree 1 file changed

+5

-4

lines changed Original file line number Diff line number Diff line change

@@ -22,10 +22,11 @@ const keyNames: { [key: string]: string | Array<string> } = {

22 22

tab: 'Tab',

23 23

enter: 'Enter',

24 24

space: ' ',

25 -

up: 'ArrowUp',

26 -

left: 'ArrowLeft',

27 -

right: 'ArrowRight',

28 -

down: 'ArrowDown',

25 +

// #7806: IE11 uses key names without `Arrow` prefix for arrow keys.

26 +

up: ['Up', 'ArrowUp'],

27 +

left: ['Left', 'ArrowLeft'],

28 +

right: ['Right', 'ArrowRight'],

29 +

down: ['Down', 'ArrowDown'],

29 30

'delete': ['Backspace', 'Delete']

30 31

}

31 32

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4