Staying consistent

This commit is contained in:
Roger Braun 2013-08-19 23:03:46 +02:00
parent f0b68ff6d1
commit 328fb7113f
2 changed files with 2 additions and 2 deletions

View file

@ -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(){
} }
}); });

View file

@ -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(){