diff --git a/src/js/providers/html5.js b/src/js/providers/html5.js index f8a3710a57..0759b2c577 100644 --- a/src/js/providers/html5.js +++ b/src/js/providers/html5.js @@ -579,6 +579,11 @@ define([ _sendFullscreen(e); if (utils.isIOS()) { _videotag.controls = false; + // iOS may pause the video after exiting fullscreen + // when using the "Done" button + if (_videotag.paused) { + _this.setState(states.PAUSED); + } } }