11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
/**
|
|
* Media Player
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
(function () {
|
|
const videoPlayer = new Plyr('#plyr-video-player');
|
|
const audioPlayer = new Plyr('#plyr-audio-player');
|
|
})();
|