From: Anthony Minessale Date: Tue, 7 Apr 2015 22:52:04 +0000 (-0500) Subject: FS-7509: fix mozilla full screen X-Git-Tag: v1.6.2~614^2~205 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=272541f42388bde5dedab6529dfe87b89250e37f;p=thirdparty%2Ffreeswitch.git FS-7509: fix mozilla full screen --- diff --git a/html5/verto/video_demo/verto.js b/html5/verto/video_demo/verto.js index f4d89da522..44fd75d659 100644 --- a/html5/verto/video_demo/verto.js +++ b/html5/verto/video_demo/verto.js @@ -575,7 +575,7 @@ function exit_full_screen() if (document.webkitFullscreenEnabled) { document.webkitExitFullscreen(); } else if (document.mozFullScreenEnabled) { - document.mozExitFullScreen(); + document.mozCancelFullScreen(); } }