remove PostViewerAuthor

This commit is contained in:
Fabian Rodriguez 2013-12-01 17:33:45 -02:00
parent 0702db137a
commit 179cc9e8dd
2 changed files with 0 additions and 40 deletions

View file

@ -1,15 +0,0 @@
app.views.PostViewerAuthor = app.views.Base.extend({
id : "post-author",
className : "media",
tooltipSelector : ".profile-image-container",
templateName: "post-viewer/author",
initialize : function() {
/* add a class so we know how to color the text for the author name */
this.$el.addClass(this.model.get("frame_name"))
}
});

View file

@ -1,25 +0,0 @@
<div class="img">
{{#linkToPerson author}}
<div class="profile-image-container small" style="background-image : url('{{avatar.small}}');" data-placement="right"></div>
{{/linkToPerson}}
</div>
<div class="bd">
{{#linkToPerson author}}
{{name}}
{{/linkToPerson}}
{{#if root}}
<i class="icon-retweet"></i>
{{#linkToPerson root.author}}
{{name}}
{{/linkToPerson}}
{{/if}}
<div class="post-time">
<time datetime="{{created_at}}" />
{{#unless public}}
<i class="icon-lock"> </i>
{{/unless}}
</div>
</div>