Welcome to mirror list, hosted at ThFree Co, Russian Federation.

video.js « nodes « markdown « behaviors « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68085c2c416278e0c4c4af597201ab1978e7d3ec (plain)
1
2
3
4
5
6
7
8
9
10
import Playable from './playable';

// Transforms generated HTML back to GFM for Banzai::Filter::VideoLinkFilter
export default class Video extends Playable {
  constructor() {
    super();
    this.mediaType = 'video';
    this.extraElementAttrs = { width: '400' };
  }
}