Sha256: dd85b2c7a4f02265d46fa4b5e4ba4615439c660d9365f402aa082abc0e66bfa5
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
pageflow.ConfigurationEditorView.register('video', { configure: function() { this.tab('general', function() { this.group('general'); this.input('additional_title', pageflow.TextInputView); this.input('additional_description', pageflow.TextAreaInputView, {size: 'short'}); }); this.tab('files', function() { this.input('video_file_id', pageflow.FileInputView, { collection: pageflow.videoFiles, positioning: false }); this.input('poster_image_id', pageflow.FileInputView, { collection: pageflow.imageFiles, positioning: false }); this.input('thumbnail_image_id', pageflow.FileInputView, { collection: pageflow.imageFiles, positioning: false }); this.input('mobile_poster_image_id', pageflow.FileInputView, { collection: pageflow.imageFiles, imagePositioning: false }); }); this.tab('options', function() { this.input('autoplay', pageflow.CheckBoxInputView); this.group('options'); }); } });
Version data entries
7 entries across 7 versions & 1 rubygems