aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2015-12-22 20:21:49 +0300
committerOleg Gaidarenko <markelog@gmail.com>2015-12-22 20:21:49 +0300
commit8c507df1d5aad7e9d0b72b96fb8f6b9dcca9ba51 (patch)
treee5bcbe4c388de1bdf6ed5c9b44f1139d64658679
parent813b7e4c8de2d4e5950d279ffdd1c171d529c764 (diff)
downloadjquery-8c507df1d5aad7e9d0b72b96fb8f6b9dcca9ba51.tar.gz
jquery-8c507df1d5aad7e9d0b72b96fb8f6b9dcca9ba51.zip
Build: code style fixes
-rw-r--r--src/core.js4
-rw-r--r--src/css.js3
-rw-r--r--src/effects.js6
3 files changed, 10 insertions, 3 deletions
diff --git a/src/core.js b/src/core.js
index 60291a5f0..b7425d277 100644
--- a/src/core.js
+++ b/src/core.js
@@ -295,7 +295,11 @@ jQuery.extend( {
// We use an anonymous function so that context is window
// rather than jQuery in Firefox
( window.execScript || function( data ) {
+
+ // jscs:disable
window[ "eval" ].call( window, data );
+ // jscs:enable
+
} )( data );
}
},
diff --git a/src/css.js b/src/css.js
index 504192307..b48fe0a3b 100644
--- a/src/css.js
+++ b/src/css.js
@@ -93,7 +93,8 @@ function showHide( elements, show ) {
// in a stylesheet to whatever the default browser style is
// for such an element
if ( elem.style.display === "" && isHidden( elem ) ) {
- values[ index ] = jQuery._data( elem, "olddisplay", defaultDisplay( elem.nodeName ) );
+ values[ index ] =
+ jQuery._data( elem, "olddisplay", defaultDisplay( elem.nodeName ) );
}
} else {
hidden = isHidden( elem );
diff --git a/src/effects.js b/src/effects.js
index f005fe204..1241a2f99 100644
--- a/src/effects.js
+++ b/src/effects.js
@@ -15,7 +15,8 @@ define( [
"./css",
"./deferred",
"./traversing"
-], function( jQuery, document, rcssNum, rnotwhite, cssExpand, isHidden, adjustCSS, defaultDisplay ) {
+], function( jQuery, document, rcssNum, rnotwhite, cssExpand,
+ isHidden, adjustCSS, defaultDisplay ) {
var
fxNow, timerId,
@@ -403,7 +404,8 @@ jQuery.speed = function( speed, easing, fn ) {
};
opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
- opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
+ opt.duration in jQuery.fx.speeds ?
+ jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
// normalize opt.queue - true/undefined/null -> "fx"
if ( opt.queue == null || opt.queue === true ) {