Skip to content
This repository has been archived by the owner on Jun 7, 2018. It is now read-only.

Commit

Permalink
Minor JS tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
birtles committed Feb 23, 2017
1 parent c50c2d5 commit 0054b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ Promise.all(

<div class='example'>
<pre class='lang-javascript'>
var isAnimating = elem.getAnimations().some(
animation =&gt; animation.playState == 'running'
const isAnimating = elem.getAnimations().some(
animation =&gt; animation.playState === 'running'
);
</pre>
</div>
Expand Down

0 comments on commit 0054b82

Please sign in to comment.