modified : android issue fixed

This commit is contained in:
Fahad Abbas 2017-03-22 17:47:48 +05:00
parent 0e7540ac7c
commit b2dc01fe57
2 changed files with 6 additions and 2 deletions

View file

@ -2200,7 +2200,11 @@
var cbModalPlayer = cbModalPlayer[0];
var modalPlayerInterval = setInterval(function(){
cbModalPlayer.play();
if (navigator.userAgent.match(/Android/i)[0] != "Android"){
cbModalPlayer.play();
}
var isPlaying = !cbModalPlayer.paused;
var cbModalPlayerCont = $(document).find("#cb_video_js_"+vData.videoid);
$(cbModalPlayerCont).find(".uploaderName").append('<a href="'+videoLink+'" title="Watch Video Page" style="margin:-2px 5px 0 0;"><i class="glyphicon glyphicon-log-in pull-right" style="font-size:20px;color:#fff;"></i></a>');

File diff suppressed because one or more lines are too long