Sha256: 5f7caa29aa51d19501e05b84271a30af02e6fb5b811f8020e1aca4447903a49a
Contents?: true
Size: 885 Bytes
Versions: 8
Compression:
Stored size: 885 Bytes
Contents
// ========================================================================== // SproutCore -- JavaScript Application Framework // copyright 2006-2008, Sprout Systems, Inc. and contributors. // ========================================================================== SC.mixin( SC.CollectionView.prototype, { // ====================================================================== // DEPRECATED APIS (Still available for compatibility) /** @private If set to false, this method will prevent you from deselecting all of the items in your view. This is better implemented using a controller that prohibits empty selection. */ allowDeselectAll: YES, /** @private */ itemExistsInCollection: function(view) { return this.hasItemView(view); }, /** @private */ viewForContentRecord: function(rec) { return this.itemViewForContent(rec); } });
Version data entries
8 entries across 8 versions & 1 rubygems