Support Mac meta key. see #7643
git-svn-id: http://svn.automattic.com/wordpress/trunk@8778 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2e664f449e
commit
4368f17dfa
|
@ -69,6 +69,7 @@ USAGE:
|
|||
shift = event.shiftKey,
|
||||
ctrl = event.ctrlKey,
|
||||
alt= event.altKey,
|
||||
meta = event.metaKey,
|
||||
propagate = true, // default behaivour
|
||||
mapPoint = null;
|
||||
|
||||
|
@ -81,7 +82,7 @@ USAGE:
|
|||
}
|
||||
}
|
||||
var cbMap = that.all[element].events[type].callbackMap;
|
||||
if(!shift && !ctrl && !alt) { // No Modifiers
|
||||
if(!shift && !ctrl && !alt && !meta) { // No Modifiers
|
||||
mapPoint = cbMap[special] || cbMap[character]
|
||||
}
|
||||
// deals with combinaitons (alt|ctrl|shift+anything)
|
||||
|
@ -90,6 +91,7 @@ USAGE:
|
|||
if(alt) modif +='alt+';
|
||||
if(ctrl) modif+= 'ctrl+';
|
||||
if(shift) modif += 'shift+';
|
||||
if(meta) modif += 'meta+';
|
||||
// modifiers + special keys or modifiers + characters or modifiers + shift characters
|
||||
mapPoint = cbMap[modif+special] || cbMap[modif+character] || cbMap[modif+that.shift_nums[character]]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue