Sha256: b3daf3fe0da80e191a0c8cd2b00b27f5b647568260df8445ae53aad973aae33c
Contents?: true
Size: 1008 Bytes
Versions: 24
Compression:
Stored size: 1008 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /** Border between the two panes of the MasterDetail. Note that the border does *NOT* include any space on the sides. Space on left or right sides of MasterDetail, if any, should be handled by its layout. */ SC.BaseTheme.MASTER_DETAIL_DIVIDER_WIDTH = 1; SC.BaseTheme.masterDetailRenderDelegate = SC.RenderDelegate.create({ className: 'master-detail', dividerWidth: 1, render: function(dataSource, context) { context.setClass('round-toolbars', SC.platform.touch); }, update: function(dataSource, jquery) { jquery.setClass('round-toolbars', SC.platform.touch); } });
Version data entries
24 entries across 24 versions & 1 rubygems