@desynova-digital/player 3.9.0 → 3.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Video.js +5 -5
- package/package.json +3 -3
package/components/Video.js
CHANGED
|
@@ -1327,26 +1327,26 @@ var Video = function (_Component) {
|
|
|
1327
1327
|
SubTitleSection,
|
|
1328
1328
|
{
|
|
1329
1329
|
onClick: function onClick() {
|
|
1330
|
-
return _this5.
|
|
1330
|
+
return _this5.handleSubtitleClick();
|
|
1331
1331
|
}
|
|
1332
1332
|
},
|
|
1333
1333
|
_react2.default.createElement(
|
|
1334
1334
|
'span',
|
|
1335
1335
|
{ className: 'subtitleContainer', style: _extends({}, currentSubtitleObj.style) },
|
|
1336
|
-
_react2.default.createElement(
|
|
1336
|
+
currentSubtitleObj.line1 && _react2.default.createElement(
|
|
1337
1337
|
'pre',
|
|
1338
1338
|
null,
|
|
1339
1339
|
' ',
|
|
1340
1340
|
currentSubtitleObj.line1,
|
|
1341
1341
|
' '
|
|
1342
|
-
),
|
|
1343
|
-
_react2.default.createElement(
|
|
1342
|
+
) || null,
|
|
1343
|
+
currentSubtitleObj.line2 && _react2.default.createElement(
|
|
1344
1344
|
'pre',
|
|
1345
1345
|
null,
|
|
1346
1346
|
' ',
|
|
1347
1347
|
currentSubtitleObj.line2,
|
|
1348
1348
|
' '
|
|
1349
|
-
)
|
|
1349
|
+
) || null
|
|
1350
1350
|
)
|
|
1351
1351
|
)
|
|
1352
1352
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desynova-digital/player",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.1",
|
|
4
4
|
"description": "Video Player Package for Contido Application",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"webpack-dev-server": "^3.11.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@desynova-digital/components": "^8.
|
|
57
|
-
"@desynova-digital/tokens": "^8.
|
|
56
|
+
"@desynova-digital/components": "^8.16.0",
|
|
57
|
+
"@desynova-digital/tokens": "^8.16.0",
|
|
58
58
|
"hls.js": "^0.11.0",
|
|
59
59
|
"latest-version": "^4.0.0",
|
|
60
60
|
"prettycli": "^1.4.3",
|