Sha256: 78d0d62ea946f7ff42a0dc945e8052cf22057016a2e9c8b7f306a78927b33158
Contents?: true
Size: 853 Bytes
Versions: 7
Compression:
Stored size: 853 Bytes
Contents
// ========================================================================== // Project: Showcase // Copyright: ©2012 7x7 Software, Inc. // License: Licensed under MIT license // ========================================================================== /*globals Showcase */ sc_require('system/views_item_content.js'); sc_require('views/views_list_view.js'); /** This pre-configured view demonstrates SC.SplitView. */ Showcase.splitViews = SC.ScrollView.design({ contentView: Showcase.ViewsListView.design({ content: [ Showcase.ViewsItemContent.create({ title: 'Regular', example: "SC.SplitView.extend({ layout: { top: 20, bottom: 20, left: 20, right: 20 }, topLeftView: SC.LabelView.design({ value: 'Left View' }), bottomRightView: SC.LabelView.design({ value: 'Right View' }) })" }) ] }) });
Version data entries
7 entries across 7 versions & 1 rubygems