-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcore.js
27 lines (20 loc) · 848 Bytes
/
core.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// ==========================================================================
// Project: GMapDemo
// Copyright: ©2010 My Company, Inc.
// ==========================================================================
/*globals GMapDemo */
/** @namespace
My cool new app. Describe your application.
@extends SC.Object
*/
GMapDemo = SC.Application.create(
/** @scope GMapDemo.prototype */ {
NAMESPACE: 'GMapDemo',
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.
}) ;