Blame view
sources/apps/files_videoviewer/mediaelement/src/js/mep-feature-endedhtml.js
198 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 |
(function($) {
$.extend(MediaElementPlayer.prototype, {
buildendedhtml: function(player, controls, layers, media) {
if (!player.isVideo)
return;
// add postroll
}
});
})(mejs.$);
|