Staying consistent
This commit is contained in:
parent
f0b68ff6d1
commit
328fb7113f
2 changed files with 2 additions and 2 deletions
|
|
@ -76,7 +76,7 @@ app.views.StatusMessage = app.views.Content.extend({
|
||||||
templateName : "status-message"
|
templateName : "status-message"
|
||||||
});
|
});
|
||||||
|
|
||||||
app.views.expandedStatusMessage = app.views.StatusMessage.extend({
|
app.views.ExpandedStatusMessage = app.views.StatusMessage.extend({
|
||||||
postRenderTemplate : function(){
|
postRenderTemplate : function(){
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ app.views.SinglePostContent = app.views.Base.extend({
|
||||||
this.singlePostActionsView = new app.views.SinglePostActions({model: this.model});
|
this.singlePostActionsView = new app.views.SinglePostActions({model: this.model});
|
||||||
this.oEmbedView = new app.views.OEmbed({model : this.model});
|
this.oEmbedView = new app.views.OEmbed({model : this.model});
|
||||||
this.openGraphView = new app.views.OpenGraph({model : this.model});
|
this.openGraphView = new app.views.OpenGraph({model : this.model});
|
||||||
this.postContentView = new app.views.expandedStatusMessage({model: this.model});
|
this.postContentView = new app.views.ExpandedStatusMessage({model: this.model});
|
||||||
},
|
},
|
||||||
|
|
||||||
postLocationStreamView : function(){
|
postLocationStreamView : function(){
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue