jwplayer w fancybox nie gra na ipad / iphone

Używam następującego kodu, ale filmy nie będą odtwarzane za pomocą jwplayer wewnątrz fancybox na iOS (ipad / iphone) ... działa dobrze. Doceniam, że iOS nie obsługuje flashowania, ale nie jestem pewien, jak zmodyfikować ten kod, aby zapewnić awarię HTML5 ...

<script type="text/javascript" src="scripts/jwplayer/html5/jwplayer.html5.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {

    $(".video_popup").fancybox({
    fitToView: false, // to show videos in their own size
    content: '<span></span>', // create temp content
    scrolling: 'no', // don't show scrolling bars in fancybox
    afterLoad: function () {
      // get dimensions from data attributes
      var $width = $(this.element).data('width'); 
      var $height = $(this.element).data('height');
      // replace temp content
      this.content = "<embed src='scripts/jwplayer/player.swf?file=" + this.href + "&autostart=true&amp;wmode=opaque' type='application/x-shockwave-flash' width='" + $width + "' height='" + $height + "'></embed>"; 
    }
  });

questionAnswers(2)

yourAnswerToTheQuestion