diff --git a/README.md b/README.md index 40ba3630..5c5b63d0 100644 --- a/README.md +++ b/README.md @@ -163,6 +163,7 @@ Bug Fixes: * Swapping between tabs will now pause the game correctly on mobile browsers (iOS7+) * Swapping between tabs will pause and resume tweens correctly, allowing their onComplete events to still fire (fixes #292) * Fullscreen mode now uses window.outerWidth/Height when using EXACT_FIT as the scale mode, which fixes input coordinate errors (fixes #232) +* Fullscreen mode now works in Internet Explorer and uses the new fullscreen non-prefix call. TO DO: diff --git a/examples/wip/fullscreen.js b/examples/wip/fullscreen.js index 487de2b6..8c0fea9e 100644 --- a/examples/wip/fullscreen.js +++ b/examples/wip/fullscreen.js @@ -51,7 +51,7 @@ function onLeaveFullScreen() { function gofull() { - game.scale.startFullScreen(); + game.scale.startFullScreen(false); } diff --git a/examples/wip/index.php b/examples/wip/index.php index 3d01b54c..76d4bea7 100644 --- a/examples/wip/index.php +++ b/examples/wip/index.php @@ -106,11 +106,15 @@ +