aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/data
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2015-09-03 02:53:29 +0300
committerOleg Gaidarenko <markelog@gmail.com>2015-09-07 20:03:50 +0300
commite35bdc1a22d7b5786b8f849acdc4653f1dc25e9b (patch)
treecd479b6eb59e53f91460a11f495d414f682efac8 /test/integration/data
parent99975c44abc8c1092764c7fca3ccfe89fc832b87 (diff)
downloadjquery-e35bdc1a22d7b5786b8f849acdc4653f1dc25e9b.tar.gz
jquery-e35bdc1a22d7b5786b8f849acdc4653f1dc25e9b.zip
Build: correct style tests files which could be automatically corrected
Diffstat (limited to 'test/integration/data')
-rw-r--r--test/integration/data/gh-1764-fullscreen.js6
1 files changed, 3 insertions, 3 deletions
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 ] );
}
}