Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #19298 from etiennesegonzac/bug-1011146
Browse files Browse the repository at this point in the history
Bug 1011146 - Exit youtube fullscreen videos before doing an edge gesture transition r=vingtetun
  • Loading branch information
etiennesegonzac committed May 15, 2014
2 parents f99dfc6 + 8ba597f commit 752bf44
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/system/js/sheets_transition.js
Expand Up @@ -34,6 +34,10 @@ var SheetsTransition = {
this._new.classList.toggle('outside-edges-left', (direction == 'ltr'));
this._new.classList.toggle('outside-edges-right', (direction == 'rtl'));
}

if (document.mozFullScreen) {
document.mozCancelFullScreen();
}
},

_lastProgress: null,
Expand Down

0 comments on commit 752bf44

Please sign in to comment.