13 lines
226 B
JavaScript
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);
|
|
},
|
|
|
|
})
|