Sha256: eee539e7ee7a84652a404ead9879aba924e3792cc17ce9f4e5665df27c47cf1c
Contents?: true
Size: 983 Bytes
Versions: 13
Compression:
Stored size: 983 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({ name: 'master-detail', 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
13 entries across 13 versions & 1 rubygems