Sha256: 5335a852948804a48ca6b193726328f32126ee88159d0764a1df536f24ca5edd
Contents?: true
Size: 741 Bytes
Versions: 5
Compression:
Stored size: 741 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2009 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== SC.AceTheme.panelRenderDelegate = SC.RenderDelegate.create({ name: 'panel', render: function(dataSource, context) { context = context.begin('div').addClass('panel-background'); this.includeSlices(dataSource, context, SC.NINE_SLICE); context = context.end(); }, update: function() { // doesn't get updated } });
Version data entries
5 entries across 5 versions & 2 rubygems