| author | ymh <ymh.work@gmail.com> |
| Fri, 02 Dec 2016 13:25:08 +0100 | |
| changeset 457 | a7a333c0b1eb |
| parent 456 | 3a32d2f57429 |
| permissions | -rw-r--r-- |
|
454
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
{{#if hasPlayer }} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
2 |
<i class="fa fa-play" {{action play begin}}>Play</i> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
3 |
{{#if title}}<span class="title">{{title}}</span>{{/if}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
4 |
{{/if}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
5 |
<div class="fragment"> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
6 |
{{#if original}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
7 |
<p class="original"> |
| 456 | 8 |
{{#if speaker}}<span class="speaker">{{speaker}} :</span>{{/if}} |
|
454
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
9 |
{{original}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
10 |
</p> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
11 |
{{/if}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
12 |
{{#if literal}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
13 |
<div class="words"> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
14 |
{{#each literal as |word|}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
15 |
<div class="word"> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
16 |
<p class="original">{{word.original}}</p> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
17 |
<p class="translation">{{word.translation}}</p> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
18 |
</div> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
19 |
{{/each}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
20 |
</div> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
21 |
{{/if}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
22 |
{{#if translation}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
23 |
<p class="translation">{{translation}}</p> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
24 |
{{/if}} |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
25 |
</div> |
|
710a2ae08a74
rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
26 |