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 /**
  9   @namespace
 10 
 11   Any view you want to use as a group view in a collection must include this
 12   mixin.
 13   
 14   @since SproutCore 1.0
 15 */
 16 SC.CollectionGroup = {
 17   
 18   /**
 19     @type Array
 20     @default ['sc-collection-group']
 21     @see SC.View#classNames
 22   */
 23   classNames: ['sc-collection-group']
 24   
 25 };
 26