event.metaKey should be ctrl key, patch jquery
This commit is contained in:
parent
ed4f7f0c2d
commit
46e10fb81b
2 changed files with 3 additions and 3 deletions
2
source/Ox.UI/jquery/jquery-1.7.1.js
vendored
2
source/Ox.UI/jquery/jquery-1.7.1.js
vendored
|
@ -3349,7 +3349,7 @@ jQuery.event = {
|
|||
}
|
||||
|
||||
// For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8)
|
||||
if ( event.metaKey === undefined ) {
|
||||
if ( !event.metaKey && event.ctrlKey ) {
|
||||
event.metaKey = event.ctrlKey;
|
||||
}
|
||||
|
||||
|
|
4
source/Ox.UI/jquery/jquery-1.7.1.min.js
vendored
4
source/Ox.UI/jquery/jquery-1.7.1.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue