Ionic Youtube video on iOS

0
down vote
favorite
I am using Ionic and the youtube video works in browser, on android but not on ios emulator and ios devices. It was working before but it stopped working, I’m not sure why. The area where the video is suppose to be is just a blank space.

Here’s my code

>     <div class="video-container" ng-show="selectedApplicant.interview_url">
>       <iframe ng-src="{{trustSrc(selectedApplicant.interview_url)}}" frameborder="0" width="560" height="315"></iframe>
>     </div>


>   $scope.trustSrc = function(src) {
>     return $sce.trustAsResourceUrl(src+ "?wmode=opaque&rel=0&autohide=1&showinfo=0&wmode=transparent&modestbranding=1");
>   };