From ef6b03fef113ec4a1c9b2aa0cd95883337e24d33 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Sun, 1 Jun 2014 21:29:25 +0100 Subject: [PATCH] Ember cleanup: double quotes + removed bad tag - All HTML / Handlebars should use double quotes - Removed a tag I meant to remove earlier --- core/client/templates/-navbar.hbs | 2 +- core/client/templates/editor.hbs | 3 +-- core/client/templates/post-settings-menu.hbs | 2 +- core/client/templates/posts.hbs | 4 ++-- core/client/templates/posts/post.hbs | 2 +- core/client/templates/settings/general.hbs | 10 +++++----- core/client/templates/settings/user.hbs | 10 +++++----- 7 files changed, 16 insertions(+), 17 deletions(-) diff --git a/core/client/templates/-navbar.hbs b/core/client/templates/-navbar.hbs index e59eb065ca..a43e06339a 100644 --- a/core/client/templates/-navbar.hbs +++ b/core/client/templates/-navbar.hbs @@ -19,7 +19,7 @@ {{/gh-popover-button}} {{!-- @TODO: add functionality to allow for dropdown to work --}} {{#gh-popover tagName="ul" classNames="overlay" name="user-menu" closeOnClick="true"}} -
  • {{#link-to 'settings.user'}}Your Profile{{/link-to}}
  • +
  • {{#link-to "settings.user"}}Your Profile{{/link-to}}
  • Help / Support
  • diff --git a/core/client/templates/editor.hbs b/core/client/templates/editor.hbs index cdb1d86ef5..873f6fcef0 100644 --- a/core/client/templates/editor.hbs +++ b/core/client/templates/editor.hbs @@ -1,4 +1,3 @@ -
    {{input type="text" id="entry-title" placeholder="Your Post Title" value=title tabindex="1"}} @@ -24,4 +23,4 @@
    -{{partial 'publish-bar'}} +{{partial "publish-bar"}} diff --git a/core/client/templates/post-settings-menu.hbs b/core/client/templates/post-settings-menu.hbs index 83d04fc5fb..a99740c473 100644 --- a/core/client/templates/post-settings-menu.hbs +++ b/core/client/templates/post-settings-menu.hbs @@ -29,4 +29,4 @@ -Delete This Post +Delete This Post diff --git a/core/client/templates/posts.hbs b/core/client/templates/posts.hbs index d38136de66..44ce212549 100644 --- a/core/client/templates/posts.hbs +++ b/core/client/templates/posts.hbs @@ -6,11 +6,11 @@ {{#link-to "new" class="button button-add" title="New Post"}}{{/link-to}} - {{#view 'content-list-content-view' tagName="section"}} + {{#view "content-list-content-view" tagName="section"}}
      {{#each itemController="posts/post" itemView="post-item-view" itemTagName="li"}} {{!-- @TODO: Restore functionality where 'featured' and 'page' classes are added for proper posts --}} - {{#link-to 'posts.post' this class="permalink" title="Edit this post"}} + {{#link-to "posts.post" this class="permalink" title="Edit this post"}}

      {{title}}