author | ymh <ymh.work@gmail.com> |
Mon, 06 Feb 2017 15:22:39 +0100 | |
changeset 500 | 4f507ba2bb4c |
parent 406 | cf0f23803a53 |
child 541 | e756a8c72c3d |
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 |
||
406
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
305
diff
changeset
|
6 |
let App; |
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
305
diff
changeset
|
7 |
|
4 | 8 |
Ember.MODEL_FACTORY_INJECTIONS = true; |
9 |
||
406
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
305
diff
changeset
|
10 |
App = Ember.Application.extend({ |
305
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
11 |
modulePrefix: config.modulePrefix, |
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
12 |
podModulePrefix: config.podModulePrefix, |
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
13 |
Resolver, |
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
14 |
rootElement: '#ember-container' |
4 | 15 |
}); |
16 |
||
17 |
loadInitializers(App, config.modulePrefix); |
|
18 |
||
19 |
export default App; |