Skip to content

Commit

Permalink
style: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmeinke committed Jul 26, 2017
1 parent d170791 commit 7bca77f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/events/src.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ const shape2Keyframe2 = { type: 'rect', width: 20, height: 20, x: 80, y: 40, nam
const shape2 = shape(shape2Keyframe1, shape2Keyframe2)

const animation = timeline(
[ shape1, { name: 'SHAPE_1' }],
[ shape2, { name: 'SHAPE_2' }]
[ shape1, { name: 'SHAPE_1' } ],
[ shape2, { name: 'SHAPE_2' } ]
)

animation.event.subscribe('timeline.start', () => console.log('timeline.start'))
Expand Down

0 comments on commit 7bca77f

Please sign in to comment.