diff --git a/ember/app/components/discussion/post-header/meta.js b/ember/app/components/discussion/post-header/meta.js index e29dfe23f..c4919f4da 100644 --- a/ember/app/components/discussion/post-header/meta.js +++ b/ember/app/components/discussion/post-header/meta.js @@ -10,7 +10,7 @@ var $ = Ember.$; export default Ember.Component.extend({ tagName: 'li', classNames: ['dropdown'], - layoutName: 'components/discussion/post-header/time', + layoutName: 'components/discussion/post-header/meta', // Construct a permalink by looking up the router in the container, and // using it to generate a link to this post within its discussion. diff --git a/ember/app/templates/components/discussion/post-header/meta.hbs b/ember/app/templates/components/discussion/post-header/meta.hbs index cfc614a65..e9d89718d 100644 --- a/ember/app/templates/components/discussion/post-header/meta.hbs +++ b/ember/app/templates/components/discussion/post-header/meta.hbs @@ -1,6 +1,6 @@ <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{human-time post.time}}</a> -<div class="dropdown-menu post-permalink"> +<div class="dropdown-menu post-meta"> <span class="number">Post #{{post.number}}</span> <span class="time">{{full-time post.time}}</span> - <input {{bind-attr value=permalink}} class="form-control"> + <input {{bind-attr value=permalink}} class="form-control permalink"> </div> diff --git a/ember/app/templates/components/discussion/post-header/time.hbs b/ember/app/templates/components/discussion/post-header/time.hbs deleted file mode 100644 index e9d89718d..000000000 --- a/ember/app/templates/components/discussion/post-header/time.hbs +++ /dev/null @@ -1,6 +0,0 @@ -<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{human-time post.time}}</a> -<div class="dropdown-menu post-meta"> - <span class="number">Post #{{post.number}}</span> - <span class="time">{{full-time post.time}}</span> - <input {{bind-attr value=permalink}} class="form-control permalink"> -</div>