Skip to content

Commit 1e0df6f

Browse files
committed
fix 404 keycode.info link
1 parent 4344bf5 commit 1e0df6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/render-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ For all other event and key modifiers, no proprietary prefix is necessary, becau
333333
| `.stop` | `event.stopPropagation()` |
334334
| `.prevent` | `event.preventDefault()` |
335335
| `.self` | `if (event.target !== event.currentTarget) return` |
336-
| Keys:<br>`.enter`, `.13` | `if (event.keyCode !== 13) return` (change `13` to [another key code](keycode.info) for other key modifiers) |
336+
| Keys:<br>`.enter`, `.13` | `if (event.keyCode !== 13) return` (change `13` to [another key code](http://keycode.info/) for other key modifiers) |
337337
| Modifiers Keys:<br>`.ctrl`, `.alt`, `.shift`, `.meta` | `if (!event.ctrlKey) return` (change `ctrlKey` to `altKey`, `shiftKey`, or `metaKey`, respectively) |
338338

339339
Here's an example with all of these modifiers used together:

0 commit comments

Comments
 (0)