Sha256: 5747687e04210802830808eba68ee36f50b056f57fa233f7c12dc89307354b53
Contents?: true
Size: 662 Bytes
Versions: 32
Compression:
Stored size: 662 Bytes
Contents
// ========================================================================== // Project: Greenhouse.Design // Copyright: ©2010 Mike Ball // ========================================================================== /*globals Greenhouse */ /** @class (Document your Model here) @extends SC.Record @version 0.1 */ Greenhouse.Design = SC.Record.extend( /** @scope Greenhouse.Design.prototype */ { primaryKey: 'scClass', name: SC.Record.attr(String), scClass: SC.Record.attr(String), defaults: SC.Record.attr(Object), canEdit: function(){ return this.getPath('parentRecord.canEdit'); }.property('parentRecord').cacheable() }) ;
Version data entries
32 entries across 32 versions & 2 rubygems