Sha256: 677b587402f0c838d3772dcd7f0c26c9500f36f51210fcbb31393308d7577886
Contents?: true
Size: 859 Bytes
Versions: 11
Compression:
Stored size: 859 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) // ========================================================================== // collections don't need their own rendering; however, in future, constants // like the row height will likely be specified on the render delegate. SC.BaseTheme.collectionRenderDelegate = SC.RenderDelegate.create({ className: 'collection', render: function(dataSource, context) { context.setClass('active', dataSource.get('isActive')); }, update: function(dataSource, jquery) { jquery.setClass('active', dataSource.get('isActive')); } });
Version data entries
11 entries across 11 versions & 1 rubygems