author | Chloe Laisne <chloe.laisne@gmail.com> |
Fri, 10 Jun 2016 23:42:11 +0200 | |
changeset 186 | 36e5a67656e6 |
parent 168 | 17f10b56c079 |
child 305 | ff6cf3fc5f40 |
permissions | -rw-r--r-- |
4 | 1 |
import Ember from 'ember'; |
136 | 2 |
import Resolver from './resolver'; |
118
dbcacab69cfc
upgrade ember version to v2.3.1 for bo-client
ymh <ymh.work@gmail.com>
parents:
32
diff
changeset
|
3 |
import loadInitializers from 'ember-load-initializers'; |
4 | 4 |
import config from './config/environment'; |
5 |
||
136 | 6 |
let App; |
4 | 7 |
|
8 |
Ember.MODEL_FACTORY_INJECTIONS = true; |
|
9 |
||
10 |
App = Ember.Application.extend({ |
|
168
17f10b56c079
improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
11 |
modulePrefix: config.modulePrefix, |
17f10b56c079
improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
12 |
podModulePrefix: config.podModulePrefix, |
17f10b56c079
improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
13 |
Resolver, |
17f10b56c079
improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
14 |
rootElement: '#ember-container' |
4 | 15 |
}); |
16 |
||
17 |
loadInitializers(App, config.modulePrefix); |
|
18 |
||
19 |
export default App; |