Sha256: 9aaf393c14f2ad9203dea281af11d7cbf83c3b5f8fa4b721af145913e9940bf2
Contents?: true
Size: 909 Bytes
Versions: 17
Compression:
Stored size: 909 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2010 Sprout Systems, Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== SC.BaseTheme.splitDividerRenderDelegate = SC.RenderDelegate.create({ name: 'split-divider', dividerSize: 1, splitPositionOffset: -5, splitSizeOffset: 10, render: function(dataSource, context) { this.addSizeClassName(dataSource, context); // the divider view itself is the grabber, but the visible line // may be inside of it. context.push("<div class='line'></div>"); }, update: function(dataSource, jquery) { this.updateSizeClassName(dataSource, jquery); } });
Version data entries
17 entries across 17 versions & 1 rubygems