aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects/Tween.js
diff options
context:
space:
mode:
authorWonseop Kim <wonseop.kim@samsung.com>2020-05-05 17:49:27 +0900
committerGitHub <noreply@github.com>2020-05-05 10:49:27 +0200
commit3d62d5704989f17d3a20ae7521d52e9c8c60b4ee (patch)
treee65bc1fe0f602abb63c9de17f75ab85524a35f61 /src/effects/Tween.js
parent11066a9e6ac183dd710d1bc7aa74a3f809757136 (diff)
downloadjquery-3d62d5704989f17d3a20ae7521d52e9c8c60b4ee.tar.gz
jquery-3d62d5704989f17d3a20ae7521d52e9c8c60b4ee.zip
Build: Correct code indentations based on jQuery Style Guide
1. Correct code indentations based on jQuery Style Guide (contribute.jquery.org/style-guide/js/#spacing). 2. Add rules to "src/.eslintrc.json" to enable "enforcing consistent indentation", with minimal changes to the current code. Closes gh-4672
Diffstat (limited to 'src/effects/Tween.js')
-rw-r--r--src/effects/Tween.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/Tween.js b/src/effects/Tween.js
index 9a75a9af2..c0220bd10 100644
--- a/src/effects/Tween.js
+++ b/src/effects/Tween.js
@@ -84,7 +84,7 @@ Tween.propHooks = {
if ( jQuery.fx.step[ tween.prop ] ) {
jQuery.fx.step[ tween.prop ]( tween );
} else if ( tween.elem.nodeType === 1 && (
- jQuery.cssHooks[ tween.prop ] ||
+ jQuery.cssHooks[ tween.prop ] ||
tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
} else {