1 // ==========================================================================
  2 // Project:   SproutCore - JavaScript Application Framework
  3 // Copyright: ©2006-2011 Strobe Inc. and contributors.
  4 //            Portions ©2008-2011 Apple Inc. All rights reserved.
  5 // License:   Licensed under MIT license (see license.js)
  6 // ==========================================================================
  7 
  8 SC.BaseTheme.wellRenderDelegate = SC.RenderDelegate.create({
  9   className: 'well',
 10   render: function(dataSource, context) {
 11     this.includeSlices(dataSource, context, SC.NINE_SLICE);
 12   },
 13   
 14   update: function() {
 15 
 16   }
 17 });
 18