aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2017-03-30 00:57:34 -0600
committerBen Beltran <ben@nsovocal.com>2017-03-30 00:57:34 -0600
commit31d618746e16df973fc6f752b1a92707bd617f84 (patch)
treeff0bff99a5ea3b6e0a9b670ff0dd74e5c30258b9 /js
parentfe45267ff960de60ec8a057ab67195fcc7b895ab (diff)
Fix linter warnings
Diffstat (limited to 'js')
-rw-r--r--js/lib/heart_renderer.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/lib/heart_renderer.js b/js/lib/heart_renderer.js
index 356ed72..4680fb9 100644
--- a/js/lib/heart_renderer.js
+++ b/js/lib/heart_renderer.js
@@ -77,7 +77,6 @@
this._following = null; // The status of mouse follow.
this._center = null; // The actual center
this._targetHeartSize = this.heartSize;
- this._
this._targetCenter = {
x: 0,
y: 0
@@ -254,6 +253,7 @@
// Updates a single color component.
_updateColorComponent(component, delta) {
+
let color = Math.round(this._currentColor[component] + (delta * this._colorSpeed[component] * this._colorDirection[component]));
if (color >= kColorIteratorLimit) {
this._colorDirection[component] = -1;
@@ -367,11 +367,13 @@
// Apply a class to show the cursor.
_showCursor() {
+
this.canvas.classList.add('mouse-moving');
}
// Remove class to hide the cursor.
_hideCursor() {
+
this.canvas.classList.remove('mouse-moving');
}
};