]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7509: fix mozilla full screen
authorAnthony Minessale <anthm@freeswitch.org>
Tue, 7 Apr 2015 22:52:04 +0000 (17:52 -0500)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:47:17 +0000 (12:47 -0500)
html5/verto/video_demo/verto.js

index f4d89da5228b85e880a0bb8fa851b752fb3da241..44fd75d659e71f2b41735ea26157acbb5986cdd5 100644 (file)
@@ -575,7 +575,7 @@ function exit_full_screen()
     if (document.webkitFullscreenEnabled) {
        document.webkitExitFullscreen();
     } else if (document.mozFullScreenEnabled) {
-       document.mozExitFullScreen();
+       document.mozCancelFullScreen();
     }
 }