0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Merge pull request #4740 from rwjblue/remove-manual-registerHelper

Allow resolver to lookup gh-path helper.
This commit is contained in:
Jason Williams 2014-12-31 14:17:02 -06:00
commit 85a34f66c2
2 changed files with 0 additions and 3 deletions

View file

@ -3,7 +3,6 @@ import loadInitializers from 'ember/load-initializers';
import 'ghost/utils/link-view'; import 'ghost/utils/link-view';
import 'ghost/utils/text-field'; import 'ghost/utils/text-field';
import configureApp from 'ghost/config'; import configureApp from 'ghost/config';
import ghostPathsHelper from 'ghost/helpers/ghost-paths';
Ember.MODEL_FACTORY_INJECTIONS = true; Ember.MODEL_FACTORY_INJECTIONS = true;
@ -17,6 +16,4 @@ configureApp(App);
loadInitializers(App, 'ghost'); loadInitializers(App, 'ghost');
Ember.Handlebars.registerHelper('gh-path', ghostPathsHelper);
export default App; export default App;