From e35bdc1a22d7b5786b8f849acdc4653f1dc25e9b Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Thu, 3 Sep 2015 02:53:29 +0300 Subject: Build: correct style tests files which could be automatically corrected --- test/integration/data/gh-1764-fullscreen.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/integration/data') diff --git a/test/integration/data/gh-1764-fullscreen.js b/test/integration/data/gh-1764-fullscreen.js index c13c609f3..b2bb4cdb5 100644 --- a/test/integration/data/gh-1764-fullscreen.js +++ b/test/integration/data/gh-1764-fullscreen.js @@ -17,10 +17,10 @@ function bootstrapFrom( mainSelector, mode ) { document.webkitExitFullscreen; function isFullscreen() { - return !!(document.fullscreenElement || + return !!( document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement || - document.msFullscreenElement); + document.msFullscreenElement ); } function requestFullscreen( element ) { @@ -82,7 +82,7 @@ function bootstrapFrom( mainSelector, mode ) { if ( isFullscreen() ) { exitFullscreen(); } else { - requestFullscreen( jQuery( mainSelector + " .container" )[0] ); + requestFullscreen( jQuery( mainSelector + " .container" )[ 0 ] ); } } -- cgit v1.2.3