Files
dss/static/js/app/views/comment/commentItemView.coffee
2013-12-20 19:36:51 +00:00

12 lines
398 B
CoffeeScript
Executable File

define ['app.lib/dssView', 'utils', 'text!/tpl/CommentItemView'],
(DssView, utils, Template) ->
class CommentItemView extends DssView
template: _.template(Template)
events: {
"click #delete-comment": "deleteComment"
}
deleteComment: ->
utils.messageBox "/dlg/DeleteCommentConfirm", =>
@model.destroy()
CommentItemView