CC-3429: Firefox does not natively support mp3 file playing so preview does nothing.

- updated the logic in jplayer to include supplied m4v, but hide the video viewer through the size option.
This commit is contained in:
Daniel 2012-03-19 16:09:59 -04:00
parent ece35541e6
commit acf0eb4eb2
1 changed files with 6 additions and 10 deletions

View File

@ -7,11 +7,6 @@ var _idToPostionLookUp;
*or a playlist or a show. *or a playlist or a show.
*/ */
$(document).ready(function(){ $(document).ready(function(){
if (useFlash())
mySupplied = "oga, mp3, m4v";
else
mySupplied = "oga, mp3";
_playlist_jplayer = new jPlayerPlaylist({ _playlist_jplayer = new jPlayerPlaylist({
jPlayer: "#jquery_jplayer_1", jPlayer: "#jquery_jplayer_1",
@ -19,7 +14,12 @@ $(document).ready(function(){
},[], //array of songs will be filled with below's json call },[], //array of songs will be filled with below's json call
{ {
swfPath: "/js/jplayer", swfPath: "/js/jplayer",
supplied:mySupplied, supplied:"oga, mp3, m4v",
size: {
width: "0px",
height: "0px",
cssClass: "jp-video-270p"
},
wmode: "window" wmode: "window"
}); });
@ -41,10 +41,6 @@ $(document).ready(function(){
} }
}); });
function useFlash() {
console.log(navigator.userAgent);
return navigator.userAgent.toLowerCase().match('firefox');
}
/** /**
* Sets up the jPlayerPlaylist to play. * Sets up the jPlayerPlaylist to play.
* - Get the playlist info based on the playlistID give. * - Get the playlist info based on the playlistID give.