summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/behaviors/markdown/nodes/video.js
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' };
  }
}