We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 448ac43 + 16e8c38 commit 4fbb104Copy full SHA for 4fbb104
src/javascript/jplayer/jquery.jplayer.js
@@ -353,13 +353,22 @@
353
'webkitExitFullscreen',
354
'',
355
''
356
+ ],
357
+ ms: [
358
+ '',
359
+ 'msFullscreenElement',
360
+ 'msRequestFullscreen',
361
+ 'msExitFullscreen',
362
+ 'MSFullscreenChange',
363
+ 'MSFullscreenError'
364
]
365
},
366
specOrder = [
367
'w3c',
368
'moz',
369
'webkit',
- 'webkitVideo'
370
+ 'webkitVideo',
371
+ 'ms'
372
],
373
fs, i, il;
374
@@ -368,7 +377,8 @@
377
w3c: !!d[spec.w3c[0]],
378
moz: !!d[spec.moz[0]],
379
webkit: typeof d[spec.webkit[3]] === 'function',
- webkitVideo: typeof v[spec.webkitVideo[2]] === 'function'
380
+ webkitVideo: typeof v[spec.webkitVideo[2]] === 'function',
381
+ ms: typeof v[spec.ms[2]] === 'function'
382
383
used: {}
384
};
0 commit comments