Initial fixes for tests on Zelda branch

No issue

- Adds embers declaration
- Removes duplicate class in code injection
This commit is contained in:
cobbspur 2015-05-18 12:43:00 +01:00 committed by Hannah Wolfe
parent 68fa1fb32a
commit be794822a4
2 changed files with 3 additions and 2 deletions

View File

@ -15,13 +15,13 @@
<div class="form-group">
<label for="ghost-head">Blog Header</label>
<p>Code here will be injected into the <code>\{{ghost_head}}</code> tag on every page of your blog</p>
{{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}}
</div>
<div class="form-group">
<label for="ghost-foot">Blog Footer</label>
<p>Code here will be injected into the <code>\{{ghost_foot}}</code> tag on every page of your blog</p>
{{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}}
</div>
</fieldset>
</form>

View File

@ -1,3 +1,4 @@
import Ember from 'ember';
import BaseView from 'ghost/views/settings/content-base';
var SettingsUserView = BaseView.extend({