Skip to content

Commit

Permalink
Built js files and tested. #213
Browse files Browse the repository at this point in the history
  • Loading branch information
thepag committed Nov 21, 2014
1 parent 4fbb104 commit a9a4398
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions dist/jplayer/jquery.jplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,13 +353,22 @@
'webkitExitFullscreen',
'',
''
],
ms: [
'',
'msFullscreenElement',
'msRequestFullscreen',
'msExitFullscreen',
'MSFullscreenChange',
'MSFullscreenError'
]
},
specOrder = [
'w3c',
'moz',
'webkit',
'webkitVideo'
'webkitVideo',
'ms'
],
fs, i, il;

Expand All @@ -368,7 +377,8 @@
w3c: !!d[spec.w3c[0]],
moz: !!d[spec.moz[0]],
webkit: typeof d[spec.webkit[3]] === 'function',
webkitVideo: typeof v[spec.webkitVideo[2]] === 'function'
webkitVideo: typeof v[spec.webkitVideo[2]] === 'function',
ms: typeof v[spec.ms[2]] === 'function'
},
used: {}
};
Expand Down
Loading

0 comments on commit a9a4398

Please sign in to comment.