Skip to content
This repository has been archived by the owner on May 26, 2018. It is now read-only.

Commit

Permalink
support more with vendor prefix call on fullscreen change (#1052)
Browse files Browse the repository at this point in the history
- fixes #1042
  • Loading branch information
Dave Justice committed Sep 18, 2017
1 parent c6c2bd2 commit eb376ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webextension/content-scripts/icon-overlay.js
Expand Up @@ -14,7 +14,7 @@ function onFullscreenChange() {
else el.classList.remove('fullscreen');
}

document.addEventListener('fullscreenchange', onFullscreenChange);
document.addEventListener('mozfullscreenchange', onFullscreenChange);

function onMessage(opts) {
const title = opts.title;
Expand Down

0 comments on commit eb376ab

Please sign in to comment.