Skip to content

Commit

Permalink
Fixed an IE11 issue where clicking on the video wouldn't show th…
Browse files Browse the repository at this point in the history
…e controls. closes #1291
  • Loading branch information
dmlap authored and heff committed Jun 13, 2014
1 parent 595a613 commit 1557810
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CHANGELOG
* Added cross-browser isArray for cross-frame support. fixes #1195 ([view](https://github.com/videojs/video.js/pull/1218))
* Fixed support for webvtt chapters. Fixes #676. ([view](https://github.com/videojs/video.js/pull/1221))
* Fixed issues around webvtt cue time parsing. Fixed #877, fixed #183. ([view](https://github.com/videojs/video.js/pull/1236))
* Fixed an IE11 issue where clicking on the video wouldn't show the controls ([view](https://github.com/videojs/video.js/pull/1291))

This comment has been minimized.

Copy link
@dmlap

dmlap Jun 16, 2014

Author Member

@heff: was that unicode escape intentional?

This comment has been minimized.

Copy link
@heff

heff Jun 16, 2014

Member

No, it's from handlebars actually...


--------------------

Expand Down
4 changes: 4 additions & 0 deletions src/js/media/flash.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ vjs.Flash = vjs.MediaTechController.extend({
});
}

// native click events on the SWF aren't triggered on IE11, Win8.1RT
// use stageclick events triggered from inside the SWF instead
player.on('stageclick', player.reportUserActivity);

// Flash iFrame Mode
// In web browsers there are multiple instances where changing the parent element or visibility of a plugin causes the plugin to reload.
// - Firefox just about always. https://bugzilla.mozilla.org/show_bug.cgi?id=90268 (might be fixed by version 13)
Expand Down

0 comments on commit 1557810

Please sign in to comment.