Skip to content

Commit

Permalink
Fixed ESLint warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderby committed Mar 23, 2017
1 parent 1779bc7 commit c70890d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/charts/tau.plot.js
Expand Up @@ -477,7 +477,8 @@ export class Plot extends Emitter {
spec.settings.initialAnimationSpeed = (
spec.settings.initialAnimationSpeed ||
spec.settings.animationSpeed);
const animationSpeed = (spec.settings.experimentalShouldAnimate(spec) ? spec.settings.initialAnimationSpeed : 0);
const animationSpeed = (spec.settings.experimentalShouldAnimate(spec) ?
spec.settings.initialAnimationSpeed : 0);
spec.settings.animationSpeed = animationSpeed;
const setUnitAnimation = (u) => {
u.guide = (u.guide || {});
Expand Down

0 comments on commit c70890d

Please sign in to comment.