From d70b19987c4ce665b9e5f2be6a98fba951115bcb Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Wed, 31 Dec 2014 14:44:39 -0500 Subject: [PATCH] Allow resolver to lookup gh-path helper. --- core/client/app.js | 3 --- core/client/helpers/{ghost-paths.js => gh-path.js} | 0 2 files changed, 3 deletions(-) rename core/client/helpers/{ghost-paths.js => gh-path.js} (100%) diff --git a/core/client/app.js b/core/client/app.js index bc2b49324e..bd8a3e397e 100755 --- a/core/client/app.js +++ b/core/client/app.js @@ -3,7 +3,6 @@ import loadInitializers from 'ember/load-initializers'; import 'ghost/utils/link-view'; import 'ghost/utils/text-field'; import configureApp from 'ghost/config'; -import ghostPathsHelper from 'ghost/helpers/ghost-paths'; Ember.MODEL_FACTORY_INJECTIONS = true; @@ -17,6 +16,4 @@ configureApp(App); loadInitializers(App, 'ghost'); -Ember.Handlebars.registerHelper('gh-path', ghostPathsHelper); - export default App; diff --git a/core/client/helpers/ghost-paths.js b/core/client/helpers/gh-path.js similarity index 100% rename from core/client/helpers/ghost-paths.js rename to core/client/helpers/gh-path.js