// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ==========================================================================

/**

@namespace

Any view you want to use as a group view in a collection must include this
mixin.

@since SproutCore 1.0

*/ SC.CollectionGroup = {

/**
  @type Array
  @default ['sc-collection-group']
  @see SC.View#classNames
*/
classNames: ['sc-collection-group']

};