make Likes come before Replies under post

This commit is contained in:
Jeff Atwood 2015-07-04 14:48:35 -07:00
parent bcbf538297
commit 4bffacac66
1 changed files with 1 additions and 1 deletions

View File

@ -76,8 +76,8 @@ const PostMenuView = Ember.Component.extend(StringBuffer, {
const post = this.get('post');
buffer.push("<nav class='post-controls'>");
this.renderReplies(post, buffer);
this.renderLikes(post, buffer);
this.renderReplies(post, buffer);
this.renderButtons(post, buffer);
this.renderAdminPopup(post, buffer);
buffer.push("</nav>");