1 // ==========================================================================
  2 // Project:   SproutCore - JavaScript Application Framework
  3 // Copyright: ©2008-2011 Apple Inc. All rights reserved.
  4 // License:   Licensed under MIT license (see license.js)
  5 // ==========================================================================
  6 
  7 
  8 SC.BaseTheme.formRenderDelegate = SC.RenderDelegate.create({
  9   className: 'form',
 10   flowSpacing: { left: 5, top: 5, bottom: 5, right: 5 },
 11 
 12   render: function() {
 13   },
 14 
 15   update: function() {
 16 
 17   }
 18 });
 19 
 20 SC.BaseTheme.FORM_FLOW_SPACING = { left: 5, top: 5, bottom: 5, right: 5 };
 21 
 22 
 23