Skip to content

Commit

Permalink
Latest build files for testing in Avalon
Browse files Browse the repository at this point in the history
  • Loading branch information
Dananji committed Feb 15, 2024
1 parent 2f31fb4 commit ef13dbe
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 10 deletions.
8 changes: 6 additions & 2 deletions dist/ramp.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4880,8 +4880,12 @@ function VideoJSPlayer(_ref) {
player.on('ready', function () {
console.log('Player ready');

// Add class for volume panel in audio player to make it always visible
if (!isVideo) {
/*
Add class to the volume panel in audio player to make it always visible.
This is only applicable in non-mobile devices as mobile devices only
have the mute toggle.
*/
if (!isVideo && !IS_MOBILE) {
player.getChild('controlBar').getChild('VolumePanel').addClass('vjs-slider-active');
}
// Add this class in mobile/tablet devices to always show the control bar,
Expand Down
2 changes: 1 addition & 1 deletion dist/ramp.cjs.min.js

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions dist/ramp.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -4849,8 +4849,12 @@ function VideoJSPlayer(_ref) {
player.on('ready', function () {
console.log('Player ready');

// Add class for volume panel in audio player to make it always visible
if (!isVideo) {
/*
Add class to the volume panel in audio player to make it always visible.
This is only applicable in non-mobile devices as mobile devices only
have the mute toggle.
*/
if (!isVideo && !IS_MOBILE) {
player.getChild('controlBar').getChild('VolumePanel').addClass('vjs-slider-active');
}
// Add this class in mobile/tablet devices to always show the control bar,
Expand Down
8 changes: 6 additions & 2 deletions dist/ramp.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -4855,8 +4855,12 @@
player.on('ready', function () {
console.log('Player ready');

// Add class for volume panel in audio player to make it always visible
if (!isVideo) {
/*
Add class to the volume panel in audio player to make it always visible.
This is only applicable in non-mobile devices as mobile devices only
have the mute toggle.
*/
if (!isVideo && !IS_MOBILE) {
player.getChild('controlBar').getChild('VolumePanel').addClass('vjs-slider-active');
}
// Add this class in mobile/tablet devices to always show the control bar,
Expand Down
2 changes: 2 additions & 0 deletions docs/build/bundle.34090a38.js

Large diffs are not rendered by default.

File renamed without changes.
2 changes: 0 additions & 2 deletions docs/build/bundle.eebd5acc.js

This file was deleted.

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.eebd5acc.js"></script>
<script src="build/bundle.34090a38.js"></script>
</body>
</html>

0 comments on commit ef13dbe

Please sign in to comment.