Deactivate content collapsing for SPV.

This commit is contained in:
Roger Braun 2013-08-18 16:56:52 +02:00
parent 96149cfe23
commit c6e2a91359
2 changed files with 6 additions and 1 deletions

View file

@ -76,6 +76,11 @@ app.views.StatusMessage = app.views.Content.extend({
templateName : "status-message"
});
app.views.expandedStatusMessage = app.views.StatusMessage.extend({
postRenderTemplate : function(){
}
});
app.views.Reshare = app.views.Content.extend({
templateName : "reshare"
});

View file

@ -13,7 +13,7 @@ app.views.SinglePostContent = app.views.Base.extend({
this.singlePostActionsView = new app.views.SinglePostActions({model: this.model});
this.oEmbedView = new app.views.OEmbed({model : this.model});
this.openGraphView = new app.views.OpenGraph({model : this.model});
this.postContentView = new app.views.StatusMessage({model: this.model});
this.postContentView = new app.views.expandedStatusMessage({model: this.model});
},
postLocationStreamView : function(){