Sha256: 868ce941bd578ace48c7005f1760650fef3db789fe9c5a87a3d2932f3790fd41
Contents?: true
Size: 840 Bytes
Versions: 7
Compression:
Stored size: 840 Bytes
Contents
pageflow.internalLinks.GridConfigurationEditorView = pageflow.ConfigurationEditorView.extend({ configure: function() { this.tab('general', function() { this.group('general'); }); this.tab('files', function() { this.group('background'); 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.input('linked_pages_layout', pageflow.SelectInputView, {values: pageflow.Page.linkedPagesLayouts}); this.view(pageflow.PageLinksView, { model: this.model.page }); }); this.tab('options', function() { this.group('options'); }); } });
Version data entries
7 entries across 7 versions & 1 rubygems