overleaf/services/web/public/coffee/ide/review-panel/directives/commentEntry.coffee
2016-11-16 16:13:39 +00:00

19 lines
No EOL
441 B
CoffeeScript

define [
"base"
], (App) ->
App.directive "commentEntry", () ->
restrict: "E"
templateUrl: "commentEntryTemplate"
scope:
entry: "="
users: "="
onResolve: "&"
onReply: "&"
onIndicatorClick: "&"
link: (scope, element, attrs) ->
scope.handleCommentReplyKeyPress = (ev) ->
if ev.keyCode == 13 and !ev.shiftKey and !ev.ctrlKey and !ev.metaKey
ev.preventDefault()
ev.target.blur()
scope.onReply()