Sha256: ae99ace261832d965a1da07e74b25c33e258f006560bcd4d282f8a7739430290
Contents?: true
Size: 1.13 KB
Versions: 11
Compression:
Stored size: 1.13 KB
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.WebView. */ Showcase.webViews = SC.ScrollView.design({ contentView: Showcase.ViewsListView.design({ content: [ Showcase.ViewsItemContent.create({ title: 'Regular', example: "SC.WebView.extend({ classNames: ['my-web-view'], layout: { left: 20, top: 20, right: 20, bottom: 20 }, value: 'http://sproutcore.com' })", supportAction: function() { var view = this.getPath('parentView.exampleBox.contentView') value = view.get('value'); if (value === 'http://sproutcore.com') view.set('value', 'http://docs.sproutcore.com'); else view.set('value', 'http://sproutcore.com'); }, supportTitle: 'Toggle Value' }) ], exampleHeight: 500 }) });
Version data entries
11 entries across 11 versions & 1 rubygems