curly fix
diff --git a/.eslintrc.json b/.eslintrc.json
index 8bbec52..c4f6514 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -39,7 +39,6 @@
         "no-shadow": "off",
         "no-restricted-globals": "off",
         "default-case": "off",
-        "curly": "off",
         "nonblock-statement-body-position": "off",
         "no-else-return": "off",
         "no-unused-expressions": "off",
diff --git a/player/js/3rd_party/BezierEaser.js b/player/js/3rd_party/BezierEaser.js
index da798c2..4c8e0c3 100644
--- a/player/js/3rd_party/BezierEaser.js
+++ b/player/js/3rd_party/BezierEaser.js
@@ -107,8 +107,7 @@
         mX2 = this._p[2],
         mY2 = this._p[3];
       this._precomputed = true;
-      if (mX1 !== mY1 || mX2 !== mY2)
-        this._calcSampleValues();
+      if (mX1 !== mY1 || mX2 !== mY2) { this._calcSampleValues(); }
     },
 
     _calcSampleValues: function () {
diff --git a/player/js/utils/animationFramePolyFill.js b/player/js/utils/animationFramePolyFill.js
index c83c879..b6a43a0 100644
--- a/player/js/utils/animationFramePolyFill.js
+++ b/player/js/utils/animationFramePolyFill.js
@@ -5,7 +5,7 @@
     window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
     window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame'];
   }
-  if(!window.requestAnimationFrame)
+  if(!window.requestAnimationFrame) {
     window.requestAnimationFrame = function (callback, element) {
       var currTime = new Date().getTime();
       var timeToCall = Math.max(0, 16 - (currTime - lastTime));
@@ -15,9 +15,11 @@
       timeToCall);
       lastTime = currTime + timeToCall;
       return id;
-    };
-  if(!window.cancelAnimationFrame)
+    }; 
+  }
+  if(!window.cancelAnimationFrame) {
     window.cancelAnimationFrame = function (id) {
       clearTimeout(id);
-    };
+    }; 
+  }
 }());