Sha256: c11e8fc182a65168390b6440185fefe43ce8c790560d474603476d85f456d51a
Contents?: true
Size: 823 Bytes
Versions: 9
Compression:
Stored size: 823 Bytes
Contents
// ========================================================================== // Project: Docs // Copyright: ©2009 My Company, Inc. // ========================================================================== /*globals Docs */ /** @namespace My cool new app. Describe your application. @extends SC.Object */ Docs = SC.Object.create( /** @scope Docs.prototype */ { NAMESPACE: 'Docs', VERSION: '0.1.0', // This is your application store. You will use this store to access all // of your model data. You can also set a data source on this store to // connect to a backend server. The default setup below connects the store // to any fixtures you define. store: SC.Store.create().from(SC.Record.fixtures) // TODO: Add global constants or singleton objects needed by your app here. }) ;
Version data entries
9 entries across 9 versions & 1 rubygems