From 3a2e8114b4042157cacacc5ffbc3ca61537b3b4c Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 7 May 2015 12:50:10 -0700 Subject: [PATCH] Explain which key is META on common platforms Sources: * https://w3c.github.io/uievents/#widl-KeyboardEvent-metaKey * https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/metaKey --- entries/event.metaKey.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entries/event.metaKey.xml b/entries/event.metaKey.xml index bca1b7b2..b83eeadd 100644 --- a/entries/event.metaKey.xml +++ b/entries/event.metaKey.xml @@ -8,6 +8,8 @@

Returns a boolean value (true or false) that indicates whether or not the META key was pressed at the time the event fired. This key might map to an alternative key name on some platforms.

+

On Macintosh keyboards, the META key maps to the Command key (⌘).

+

On Windows keyboards, the META key maps to the Windows key.

Determine whether the META key was pressed when the event fired.