jellyfish-web/src/components/syncPlay/ui/players/HtmlAudioPlayer.js

20 lines
448 B
JavaScript
Raw Normal View History

/**
* Module that manages the HtmlAudioPlayer for SyncPlay.
2020-11-23 14:27:54 +01:00
* @module components/syncPlay/ui/players/HtmlAudioPlayer
*/
2020-11-23 14:27:54 +01:00
import HtmlVideoPlayer from './HtmlVideoPlayer';
/**
* Class that manages the HtmlAudioPlayer for SyncPlay.
*/
2020-11-23 14:27:54 +01:00
class HtmlAudioPlayer extends HtmlVideoPlayer {
static type = 'htmlaudioplayer';
constructor(player, syncPlayManager) {
super(player, syncPlayManager);
}
}
2020-11-23 14:27:54 +01:00
export default HtmlAudioPlayer;