Fix bug where later strokes were hidden by earlier ones

This commit is contained in:
Shaunak Kishore
2016-02-07 23:24:14 -05:00
parent 156a0b2808
commit fad49dc073

View File

@ -137,7 +137,7 @@ Template.character.helpers({
Template.order.helpers({
animations: () => animations.get(),
strokes: () => strokes.get(),
strokes: () => strokes.get().slice().reverse(),
});
Meteor.startup(() => {