Sha256: 3e52d34268af3fa8e1bd1c8781ffe396380eceadfdb817accfb978642edc0c88
Contents?: true
Size: 987 Bytes
Versions: 10
Compression:
Stored size: 987 Bytes
Contents
pageflow.editor.widgetTypes.register('title_loading_spinner', { configurationEditorView: pageflow.ConfigurationEditorView.extend({ configure: function() { this.tab('loading_spinner', function() { this.view(pageflow.InfoBoxView, { text: I18n.t('pageflow.editor.title_loading_spinner.widget_type_info_box_text') }); this.input('title', pageflow.TextInputView, { placeholder: pageflow.entry.configuration.get('title') || pageflow.entry.get('entry_title'), }); this.input('subtitle', pageflow.TextInputView); this.input('custom_background_image_id', pageflow.FileInputView, { collection: 'image_files', fileSelectionHandler: 'widgetConfiguration' }); this.input('invert', pageflow.CheckBoxInputView); this.input('remove_logo', pageflow.CheckBoxInputView); this.input('blur_strength', pageflow.SliderInputView); }); } }) });
Version data entries
10 entries across 10 versions & 1 rubygems