Sha256: 1ed76d9a41fab30f8a85f6f478ea6ef5663a5de9f5fef46f305dfb4b3ce967a8
Contents?: true
Size: 817 Bytes
Versions: 24
Compression:
Stored size: 817 Bytes
Contents
// ========================================================================== // Project: Docs // Copyright: ©2009 Apple 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
24 entries across 24 versions & 2 rubygems