# HG changeset patch # User Lucas Thompson # Date 1499278707 -3600 # Node ID 494e2bb601dc8cf4617628c63a952daff5163d7a # Parent 97ffab611a557c6c3b793e396b4cd62595922683 Actually call the remove function for each play head diff -r 97ffab611a55 -r 494e2bb601dc src/app/visualisations/vertical-scale.component.ts --- a/src/app/visualisations/vertical-scale.component.ts Wed Jul 05 19:11:50 2017 +0100 +++ b/src/app/visualisations/vertical-scale.component.ts Wed Jul 05 19:18:27 2017 +0100 @@ -49,7 +49,7 @@ update: (time: number) => { rendered.forEach(component => component.update(time)); }, - remove: () => rendered.map(component => component.remove) + remove: () => rendered.map(component => component.remove()) }; } }