mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
49ea71ed4f
- Change fixture response of posts route to actual format. - Extracted classNames logic of routes into style-body mixin. - Additionally replaced all double-quotes with single-quotes for style conformance.
20 lines
468 B
JavaScript
Executable File
20 lines
468 B
JavaScript
Executable File
import Resolver from 'ember/resolver';
|
|
import initFixtures from 'ghost/fixtures/init';
|
|
|
|
var App = Ember.Application.extend({
|
|
/**
|
|
* These are debugging flags, they are useful during development
|
|
*/
|
|
LOG_ACTIVE_GENERATION: true,
|
|
LOG_MODULE_RESOLVER: true,
|
|
LOG_TRANSITIONS: true,
|
|
LOG_TRANSITIONS_INTERNAL: true,
|
|
LOG_VIEW_LOOKUPS: true,
|
|
modulePrefix: 'ghost',
|
|
Resolver: Resolver['default']
|
|
});
|
|
|
|
initFixtures();
|
|
|
|
export default App;
|