mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
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');
|
|
})();
|