@micromag/element-video 0.3.198 → 0.3.200
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/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/es/index.js
CHANGED
|
@@ -330,7 +330,7 @@ var Video = function Video(_ref) {
|
|
|
330
330
|
sourceMime = _ref8.mime;
|
|
331
331
|
return /*#__PURE__*/React.createElement("source", {
|
|
332
332
|
key: "".concat(sourceUrl, "-").concat(sourceMime),
|
|
333
|
-
src: sourceUrl,
|
|
333
|
+
src: sourceUrl !== null ? "".concat(sourceUrl, "#t=0.1") : null,
|
|
334
334
|
type: sourceMime
|
|
335
335
|
});
|
|
336
336
|
})) : null);
|
package/lib/index.js
CHANGED
|
@@ -342,7 +342,7 @@ var Video = function Video(_ref) {
|
|
|
342
342
|
sourceMime = _ref8.mime;
|
|
343
343
|
return /*#__PURE__*/React__default["default"].createElement("source", {
|
|
344
344
|
key: "".concat(sourceUrl, "-").concat(sourceMime),
|
|
345
|
-
src: sourceUrl,
|
|
345
|
+
src: sourceUrl !== null ? "".concat(sourceUrl, "#t=0.1") : null,
|
|
346
346
|
type: sourceMime
|
|
347
347
|
});
|
|
348
348
|
})) : null);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/element-video",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.200",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "10397ff0400180be0d48d3368fda5c268b71df45"
|
|
68
68
|
}
|