cms/app-client/app/templates/components/transcript-section-component.hbs
author ymh <ymh.work@gmail.com>
Fri, 02 Dec 2016 13:25:08 +0100
changeset 457 a7a333c0b1eb
parent 455 a8bed1c7df8e
permissions -rw-r--r--
Optimize transcript rendering : remove call to components
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
454
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<h3>{{title}}</h3>
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
<ol class="annotations">
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
  {{#each turns as |turn|}}
455
a8bed1c7df8e move the transcript highlight and autoscroll logic to the base component
ymh <ymh.work@gmail.com>
parents: 454
diff changeset
     4
  {{transcript-turn-component turn=turn player=player intervals=intervals play=(action play)}}
454
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
  {{/each}}
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
</ol>
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7