1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-15 10:39:58 +02:00

Swapped out swfobject version check for new custom version check.

This commit is contained in:
Steve Heffernan 2012-01-30 10:58:26 -08:00
parent f67c5d951c
commit f5681765fd

View File

@ -518,7 +518,8 @@ _V_.flash = _V_.PlaybackTech.extend({
/* Flash Support Testing -------------------------------------------------------- */
_V_.flash.isSupported = function(){
return swfobject.hasFlashPlayerVersion("10");
return _V_.flash.version()[0] >= 10;
// return swfobject.hasFlashPlayerVersion("10");
};
_V_.flash.canPlaySource = function(srcObj){