Skip to content

Commit

Permalink
Build files for v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dananji committed Apr 9, 2024
1 parent ee1c513 commit 2df5c00
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
4 changes: 3 additions & 1 deletion dist/ramp.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -5158,9 +5158,11 @@ function VideoJSPlayer(_ref) {
type: 'setTimeFragment'
});
if (start != end) {
// Set the end to canvas duration if it's greater for marker rendering
var markerEnd = end > canvasDuration ? canvasDuration : end;
player.markers.add([{
time: start,
duration: end - start,
duration: markerEnd - start,
text: currentNavItem.label
}]);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/ramp.cjs.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/ramp.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5127,9 +5127,11 @@ function VideoJSPlayer(_ref) {
type: 'setTimeFragment'
});
if (start != end) {
// Set the end to canvas duration if it's greater for marker rendering
var markerEnd = end > canvasDuration ? canvasDuration : end;
player.markers.add([{
time: start,
duration: end - start,
duration: markerEnd - start,
text: currentNavItem.label
}]);
}
Expand Down
4 changes: 3 additions & 1 deletion dist/ramp.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -5133,9 +5133,11 @@
type: 'setTimeFragment'
});
if (start != end) {
// Set the end to canvas duration if it's greater for marker rendering
var markerEnd = end > canvasDuration ? canvasDuration : end;
player.markers.add([{
time: start,
duration: end - start,
duration: markerEnd - start,
text: currentNavItem.label
}]);
}
Expand Down
2 changes: 0 additions & 2 deletions docs/build/bundle.26eaadcb.js

This file was deleted.

2 changes: 2 additions & 0 deletions docs/build/bundle.3f93312d.js

Large diffs are not rendered by default.

File renamed without changes.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
</head>
<body>
<div id="rsg-root"></div>
<script src="build/bundle.26eaadcb.js"></script>
<script src="build/bundle.3f93312d.js"></script>
</body>
</html>

0 comments on commit 2df5c00

Please sign in to comment.