aboutsummaryrefslogtreecommitdiffstats
path: root/src/css
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2020-03-02 22:25:35 +0100
committerGitHub <noreply@github.com>2020-03-02 22:25:35 +0100
commit4a7fc8544e2020c75047456d11979e4e3a517fdf (patch)
treee31e53ef30dab19b043fa3bb2981c2369904ed1c /src/css
parent364476c3dc1231603ba61fc08068fa89fb095e1a (diff)
downloadjquery-4a7fc8544e2020c75047456d11979e4e3a517fdf.tar.gz
jquery-4a7fc8544e2020c75047456d11979e4e3a517fdf.zip
Build: Enable ESLint one-var rule for var declarations in browser code
Node.js code is written more & more commonly in ES6+ so it doesn't make sense to enable it there. There are many violations in test code so it's disabled there as well. Closes gh-4615
Diffstat (limited to 'src/css')
-rw-r--r--src/css/support.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/css/support.js b/src/css/support.js
index 505adafb6..dc18708c1 100644
--- a/src/css/support.js
+++ b/src/css/support.js
@@ -8,7 +8,7 @@ var reliableTrDimensionsVal;
// IE/Edge misreport `getComputedStyle` of table rows with width/height
// set in CSS while `offset*` properties report correct values.
support.reliableTrDimensions = function() {
- var table, tr, trChild;
+ var table, tr, trChild, trStyle;
if ( reliableTrDimensionsVal == null ) {
table = document.createElement( "table" );
tr = document.createElement( "tr" );
@@ -23,7 +23,7 @@ support.reliableTrDimensions = function() {
.appendChild( tr )
.appendChild( trChild );
- var trStyle = window.getComputedStyle( tr );
+ trStyle = window.getComputedStyle( tr );
reliableTrDimensionsVal = parseInt( trStyle.height ) > 3;
documentElement.removeChild( table );