Skip to content

Commit 2d92c82

Browse files
committed
Add space after line-ending </em> and </strong> tags in transcript
1 parent c989d95 commit 2d92c82

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

build/ableplayer.dist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9437,7 +9437,7 @@
94379437
}
94389438
}
94399439
if (comp.type === 'b' || comp.type == 'i') {
9440-
result.push($tag);
9440+
result.push($tag,' ');
94419441
}
94429442
}
94439443
else {

build/ableplayer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9437,7 +9437,7 @@
94379437
}
94389438
}
94399439
if (comp.type === 'b' || comp.type == 'i') {
9440-
result.push($tag);
9440+
result.push($tag,' ');
94419441
}
94429442
}
94439443
else {

build/ableplayer.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/ableplayer.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

media/itaccess_captions_en.vtt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Language: en
44
55
00:00:01.560 --> 00:00:03.740
66
<v Michael K. Young> We are committed
7-
to the notion that everyone
7+
to the notion that <i>everyone</i>
88

99
00:00:03.740 --> 00:00:06.600
1010
should have an opportunity
@@ -15,24 +15,24 @@ whether it be from the learning perspective
1515
or the research perspective
1616

1717
00:00:10.030 --> 00:00:13.550
18-
or an opportunity to work here
18+
or an opportunity to <i>work</i> here
1919
at this institution.
2020

2121
00:00:13.550 --> 00:00:18.970
2222
We benefit from that because we get
23-
to enjoy the talents and the skills
23+
to enjoy the <b>talents</b> and the <b>skills</b>
2424

2525
00:00:18.970 --> 00:00:21.230
2626
of those people who come in
27-
and also their perspective
27+
and also their <b>perspective</b>
2828

2929
00:00:21.230 --> 00:00:25.600
3030
which in many cases will be different
3131
from the perspective of others on campus.
3232

3333
00:00:25.639 --> 00:00:29.095
3434
So accessibility becomes
35-
a very important value at the university.
35+
<b>a very important value</b> at the university.
3636

3737
00:00:44.430 --> 00:00:47.070
3838
<v Tracy Mitrano> We're a leading university globally.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ableplayer",
3-
"version": "3.0.12",
3+
"version": "3.0.13",
44
"description": "fully accessible HTML5 media player",
55
"homepage": "http://ableplayer.github.io/ableplayer",
66
"bugs": "https://github.com/ableplayer/ableplayer/issues",

scripts/transcript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
}
475475
}
476476
if (comp.type === 'b' || comp.type == 'i') {
477-
result.push($tag);
477+
result.push($tag,' ');
478478
}
479479
}
480480
else {

0 commit comments

Comments
 (0)