Sha256: 7dae2517d0f2ba3075b8498c05221acd43297e94f7479c8da196d70f3d57054f
Contents?: true
Size: 981 Bytes
Versions: 3
Compression:
Stored size: 981 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) // ========================================================================== // the 'well'-styled container SC.BaseTheme.wellRenderDelegate = SC.Object.create({ name: 'well', render: function(dataSource, context) { context.push("<div class='top-left-edge'></div>", "<div class='top-edge'></div>", "<div class='top-right-edge'></div>", "<div class='right-edge'></div>", "<div class='bottom-right-edge'></div>", "<div class='bottom-edge'></div>", "<div class='bottom-left-edge'></div>", "<div class='left-edge'></div>", "<div class='content-background'></div>"); }, update: function() { } });
Version data entries
3 entries across 3 versions & 2 rubygems