author | ymh <ymh.work@gmail.com> |
Wed, 28 Sep 2016 15:58:18 +0200 | |
changeset 305 | ff6cf3fc5f40 |
parent 168 | 17f10b56c079 |
child 406 | cf0f23803a53 |
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 |
||
6 |
Ember.MODEL_FACTORY_INJECTIONS = true; |
|
7 |
||
305
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
8 |
const App = Ember.Application.extend({ |
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
9 |
modulePrefix: config.modulePrefix, |
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
10 |
podModulePrefix: config.podModulePrefix, |
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
11 |
Resolver, |
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
12 |
rootElement: '#ember-container' |
4 | 13 |
}); |
14 |
||
15 |
loadInitializers(App, config.modulePrefix); |
|
16 |
||
17 |
export default App; |