From b26c4d91d8f7ff44eab3d79efee936c85f69793c Mon Sep 17 00:00:00 2001 From: cobbspur Date: Mon, 18 May 2015 12:43:00 +0100 Subject: [PATCH] Initial fixes for tests on Zelda branch No issue - Adds embers declaration - Removes duplicate class in code injection --- core/client/app/templates/settings/code-injection.hbs | 4 ++-- core/client/app/views/settings/users/user.js | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/core/client/app/templates/settings/code-injection.hbs b/core/client/app/templates/settings/code-injection.hbs index fe47bc9af5..d41ee5319f 100644 --- a/core/client/app/templates/settings/code-injection.hbs +++ b/core/client/app/templates/settings/code-injection.hbs @@ -15,13 +15,13 @@

Code here will be injected into the \{{ghost_head}} tag on every page of your blog

- {{gh-cm-editor id="ghost-head" class="gh-input" name="codeInjection[ghost_head]" class="settings-code-editor" type="text" value=model.ghost_head}} + {{gh-cm-editor id="ghost-head" class="gh-input settings-code-editor" name="codeInjection[ghost_head]" type="text" value=model.ghost_head}}

Code here will be injected into the \{{ghost_foot}} tag on every page of your blog

- {{gh-cm-editor id="ghost-foot" class="gh-input" name="codeInjection[ghost_foot]" class="settings-code-editor" type="text" value=model.ghost_foot}} + {{gh-cm-editor id="ghost-foot" class="gh-input settings-code-editor" name="codeInjection[ghost_foot]" type="text" value=model.ghost_foot}}
diff --git a/core/client/app/views/settings/users/user.js b/core/client/app/views/settings/users/user.js index cf1f398de7..87c5eaaeef 100644 --- a/core/client/app/views/settings/users/user.js +++ b/core/client/app/views/settings/users/user.js @@ -1,3 +1,4 @@ +import Ember from 'ember'; import BaseView from 'ghost/views/settings/content-base'; var SettingsUserView = BaseView.extend({