# HG changeset patch # User drewp@bigasterisk.com # Date 2016-06-11 21:16:06 # Node ID 6001c86f9fcafda0ca87cdd3661c52aab345d203 # Parent 5bd2d036ae7448195ade16672196b845933feaa1 timeline: 1 row for now since i think the others were duplicating all notes (and also not showing them) Ignore-this: a763f8f93b04f6473600944e9533437d diff --git a/light9/web/timeline/timeline.coffee b/light9/web/timeline/timeline.coffee --- a/light9/web/timeline/timeline.coffee +++ b/light9/web/timeline/timeline.coffee @@ -209,7 +209,7 @@ Polymer dia: { type: Object, notify: true } song: { type: String, notify: true } zoomInX: { type: Object, notify: true } - rows: { value: [0, 1, 2] } + rows: { value: [0] } zoom: { type: Object, notify: true, observer: 'onZoom' } zoomFlattened: { type: Object, notify: true } onZoom: -> @@ -286,7 +286,7 @@ Polymer @graph.runHandler(@update.bind(@), "row notes #{@rowIndex}") update: -> U = (x) -> @graph.Uri(x) - + log("row #{@rowIndex} updating") @noteUris = [] for note in @graph.objects(@song, U(':note')) @push('noteUris', note)