Sha256: b786b2eeed46c9e3385a5c8f824036bd42d28991e242d235ebba0e603b03c6eb
Contents?: true
Size: 776 Bytes
Versions: 14
Compression:
Stored size: 776 Bytes
Contents
// ========================================================================== // 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) // ========================================================================== sc_require('models/record'); /** @class @deprecated SC.ChildRecord is deprecated. Please extend SC.Record instead. */ SC.ChildRecord = SC.Record.extend({}); SC.ChildRecord.extend = function() { // @if (debug) SC.warn("Developer Warning: SC.ChildRecord is deprecated. Please extend SC.Record instead."); // @endif return SC.Record.extend.apply(this, arguments); };
Version data entries
14 entries across 14 versions & 1 rubygems