1 // ========================================================================== 2 // Project: SproutCore - JavaScript Application Framework 3 // Copyright: ©2006-2011 Strobe Inc. and contributors. 4 // Portions ©2008-2011 Apple Inc. All rights reserved. 5 // License: Licensed under MIT license (see license.js) 6 // ========================================================================== 7 8 9 sc_require('designers/view_designer'); 10 11 SC.TabView.Designer = SC.ViewDesigner.extend( 12 /** @scope SC.TabView.Designer.prototype */ { 13 14 encodeChildViews: NO, 15 16 acceptRootDesigner: YES, 17 18 designProperties: ['nowShowing', 'items', 'itemTitleKey', 'itemValueKey', 'itemIsEnabledKey', 'itemIconKey', 'itemWidthKey', 'tabLocation', 'userDefaultKey'] 19 20 });