Sha256: ed71d30549c664e1b4d50bb55af0a0c140de7f60498d5b5b9341638685756af9
Contents?: true
Size: 914 Bytes
Versions: 24
Compression:
Stored size: 914 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({ className: '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
24 entries across 24 versions & 1 rubygems