Skip to content

Commit

Permalink
Merge pull request mediaelement#868 from sarvaje/master
Browse files Browse the repository at this point in the history
Fixed issue mediaelement#677
  • Loading branch information
johndyer committed May 30, 2013
2 parents 86c782b + 73097a1 commit f66ded9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/js/me-featuredetection.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ mejs.MediaFeatures = {

t.supportsMediaTag = (typeof v.canPlayType !== 'undefined' || t.isBustedAndroid);

// Fix for IE9 on Windows 7N / Windows 7KN (Media Player not installer)
try{
v.canPlayType("video/mp4");
}catch(e){
t.supportsMediaTag = false;
}

// detect native JavaScript fullscreen (Safari/Firefox only, Chrome still fails)

// iOS
Expand Down

0 comments on commit f66ded9

Please sign in to comment.