Sha256: 23c1fa358dd8f7a09274a6fe13816f77c34d96a509a8271a377bb2ae2d69e147
Contents?: true
Size: 1.21 KB
Versions: 6
Compression:
Stored size: 1.21 KB
Contents
pageflow.ConfigurationEditorTabView.groups.define('options', function(options) { this.input('display_in_navigation', pageflow.CheckBoxInputView); if (pageflow.theming.supportsEmphasizedPages()) { this.input('emphasize_in_navigation', pageflow.CheckBoxInputView); } this.group('page_transitions'); if (pageflow.features.isEnabled('delayed_text_fade_in')) { this.input('delayed_text_fade_in', pageflow.SelectInputView, {values: pageflow.Page.delayedTextFadeIn}); } this.input('description', pageflow.TextAreaInputView, {size: 'short', disableLinks: true}); if (pageflow.features.isEnabled('atmo')) { this.input('atmo_audio_file_id', pageflow.FileInputView, { collection: pageflow.audioFiles }); if (options.canPauseAtmo) { this.input('atmo_during_playback', pageflow.SelectInputView, { values: pageflow.Atmo.duringPlaybackModes }); } } if (pageflow.theming.supportsScrollIndicatorModes()) { this.input('scroll_indicator_mode', pageflow.SelectInputView, { values: pageflow.Page.scrollIndicatorModes }); this.input('scroll_indicator_orientation', pageflow.SelectInputView, { values: pageflow.Page.scrollIndicatorOrientations }); } });
Version data entries
6 entries across 6 versions & 1 rubygems