Deactivate content collapsing for SPV.
This commit is contained in:
parent
96149cfe23
commit
c6e2a91359
2 changed files with 6 additions and 1 deletions
|
|
@ -76,6 +76,11 @@ app.views.StatusMessage = app.views.Content.extend({
|
||||||
templateName : "status-message"
|
templateName : "status-message"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
app.views.expandedStatusMessage = app.views.StatusMessage.extend({
|
||||||
|
postRenderTemplate : function(){
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
app.views.Reshare = app.views.Content.extend({
|
app.views.Reshare = app.views.Content.extend({
|
||||||
templateName : "reshare"
|
templateName : "reshare"
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -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.StatusMessage({model: this.model});
|
this.postContentView = new app.views.expandedStatusMessage({model: this.model});
|
||||||
},
|
},
|
||||||
|
|
||||||
postLocationStreamView : function(){
|
postLocationStreamView : function(){
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue