diaspora/public/javascripts/app/views/post_reactions_view.js
2012-02-22 13:15:54 -08:00

13 lines
226 B
JavaScript

app.views.PostViewerReactions = app.views.Base.extend({
className : "",
templateName: "post-viewer/reactions",
events : { },
initialize : function() {
this.model.bind('interacted', this.render, this);
},
})