mirror of
https://github.com/videojs/video.js.git
synced 2025-03-17 21:18:27 +02:00
Close GH-971: Quiet down deprecation warnings.
This commit is contained in:
parent
2d5ca1ebc2
commit
3cb41c7786
@ -179,8 +179,13 @@ vjs.fixEvent = function(event) {
|
||||
// TODO: Probably best to create a whitelist of event props
|
||||
for (var key in old) {
|
||||
// Safari 6.0.3 warns you if you try to copy deprecated layerX/Y
|
||||
if (key !== 'layerX' && key !== 'layerY') {
|
||||
event[key] = old[key];
|
||||
// Chrome warns you if you try to copy deprecated keyboardEvent.keyLocation
|
||||
if (key !== 'layerX' && key !== 'layerY' && key !== 'keyboardEvent.keyLocation') {
|
||||
// Chrome 32+ warns if you try to copy deprecated returnValue, but
|
||||
// we still want to if preventDefault isn't supported (IE8).
|
||||
if (!(key == 'returnValue' && old.preventDefault)) {
|
||||
event[key] = old[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user