Sha256: 1dd5e507d0e5db759b098139bef8d6c849ce46c793982541e96ca42aeb4db485
Contents?: true
Size: 849 Bytes
Versions: 9
Compression:
Stored size: 849 Bytes
Contents
pageflow.ConfigurationEditorView.register('audio', { 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('audio_file_id', pageflow.FileInputView, {collection: pageflow.audioFiles}); this.input('background_image_id', pageflow.FileInputView, {collection: pageflow.imageFiles}); this.input('thumbnail_image_id', pageflow.FileInputView, { collection: pageflow.imageFiles, positioning: false }); }); this.tab('options', function() { this.input('autoplay', pageflow.CheckBoxInputView); this.group('options', {canPauseAtmo: true}); }); } });
Version data entries
9 entries across 9 versions & 1 rubygems