Skip to content

Commit

Permalink
Google Nexus 7 w/ android 4.1 seems to have flaky inline HLS support
Browse files Browse the repository at this point in the history
-- TODO test more 4.1 android HLS, for now blanket disable ( android
4.1 uses chrome 18 by default instead of native "android browser" )
  • Loading branch information
Michael Dale committed Aug 7, 2012
1 parent b44f138 commit c1b8810
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions kWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ var kWidget = {
mw.setConfig( 'EmbedPlayer.NotPlayableDownloadLink', true );
}

// Google Nexus 7 running android 4.1 seems to have flaky inline HLS support
// TODO test more 4.1 android HLS
if( ua.indexOf( 'Android 4.1' ) != -1 ){
mw.setConfig('Kaltura.UseAppleAdaptive', false);
}

// TODO deprecate in 1.7 where we don't have client side api.
if( window.jQuery && !mw.versionIsAtLeast( '1.3.2', jQuery.fn.jquery ) ){
kWidget.log( 'Kaltura HTML5 works best with jQuery 1.3.2 or above' );
Expand Down

0 comments on commit c1b8810

Please sign in to comment.