Remove unused template

This commit is contained in:
Toby Zerner 2015-02-25 15:32:21 +10:30
parent 5f588bc6e9
commit 327719c5a3
3 changed files with 3 additions and 9 deletions

View File

@ -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.

View File

@ -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>

View File

@ -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>