Sha256: 7db4bdddc6b827482d0c91bcf7902c9ea5024c9ac6dab5a5af4357be66cff5cd
Contents?: true
Size: 797 Bytes
Versions: 2
Compression:
Stored size: 797 Bytes
Contents
pageflow.internalLinks.ListConfigurationEditorView = pageflow.ConfigurationEditorView.extend({ configure: function() { this.tab('general', function() { this.group('general'); }); this.tab('files', function() { this.input('background_image_id', pageflow.FileInputView, {collection: pageflow.imageFiles}); this.input('thumbnail_image_id', pageflow.FileInputView, { collection: pageflow.imageFiles, positioning: false }); }); this.tab('links', function() { this.view(pageflow.internalLinks.EditableLinksModeView, { model: this.model.page }); this.view(pageflow.PageLinksView, { model: this.model.page }); }); this.tab('options', function() { this.group('options'); }); } });
Version data entries
2 entries across 2 versions & 1 rubygems