diaspora/app/assets/javascripts/app/views/reshares_info_view.js
2016-11-02 23:02:32 +01:00

34 lines
948 B
JavaScript

// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-v3-or-Later
app.views.ResharesInfo = app.views.Base.extend({
templateName : "reshares-info",
events : {
"click .expand-reshares" : "showAvatars"
},
tooltipSelector : ".avatar",
initialize : function() {
this.model.interactions.reshares.bind("change", this.render, this);
this.displayAvatars = false;
},
presenter : function() {
return _.extend(this.defaultPresenter(), {
reshares : this.model.interactions.reshares.toJSON(),
resharesCount : this.model.interactions.resharesCount(),
displayAvatars: this.displayAvatars
});
},
showAvatars : function(evt){
if(evt) { evt.preventDefault() }
this.displayAvatars = true;
this.model.interactions.reshares.fetch({success: function() {
this.model.interactions.reshares.trigger("change");
}.bind(this)});
}
});
// @license-end