summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/video.js
blob: 312e8cd5ff634796c6ceb4b50cb982e905eeda02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Playable from './playable';

export default Playable.extend({
  name: 'video',
  addOptions() {
    return {
      ...this.parent?.(),
      mediaType: 'video',
      extraElementAttrs: { width: '400' },
    };
  },
});