Sha256: 82e2d280655a2707400204f6b829e16e8233b7d702dac347662c11fde323a69a
Contents?: true
Size: 1.02 KB
Versions: 5
Compression:
Stored size: 1.02 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2010 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /*globals TestControls */ /** @namespace My cool new app. Describe your application. @extends SC.Object */ TestControls = SC.Application.create( /** @scope TestControls.prototype */ { NAMESPACE: 'TestControls', 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
5 entries across 5 versions & 2 rubygems