From acf0eb4eb2464b4d620c4db742ddcf720fc11a25 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 19 Mar 2012 16:09:59 -0400 Subject: [PATCH] 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. --- airtime_mvc/public/js/jplayer/preview_jplayer.js | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/airtime_mvc/public/js/jplayer/preview_jplayer.js b/airtime_mvc/public/js/jplayer/preview_jplayer.js index e954a74b5..f00a92b7b 100644 --- a/airtime_mvc/public/js/jplayer/preview_jplayer.js +++ b/airtime_mvc/public/js/jplayer/preview_jplayer.js @@ -7,11 +7,6 @@ var _idToPostionLookUp; *or a playlist or a show. */ $(document).ready(function(){ - - if (useFlash()) - mySupplied = "oga, mp3, m4v"; - else - mySupplied = "oga, mp3"; _playlist_jplayer = new jPlayerPlaylist({ jPlayer: "#jquery_jplayer_1", @@ -19,7 +14,12 @@ $(document).ready(function(){ },[], //array of songs will be filled with below's json call { swfPath: "/js/jplayer", - supplied:mySupplied, + supplied:"oga, mp3, m4v", + size: { + width: "0px", + height: "0px", + cssClass: "jp-video-270p" + }, 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. * - Get the playlist info based on the playlistID give.