Blame view
sources/apps/files_videoviewer/mediaelement/src/js/mep-feature-visualcontrols.js
193 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 |
(function($) {
MediaElementPlayer.prototype.buildvisualcontrols = function(player, controls, layers, media) {
if (!player.isVideo)
return;
// add visual controls (HSV)
}
})(mejs.$);
|