Clear selection after creating a comment

This commit is contained in:
James Allen 2017-02-03 14:17:09 +01:00
parent 5be65431f7
commit 27c48f3790
2 changed files with 4 additions and 0 deletions

View file

@ -37,6 +37,9 @@ define [
@gotoOffset(offset) @gotoOffset(offset)
, 10 # Hack: Must happen after @gotoStoredPosition , 10 # Hack: Must happen after @gotoStoredPosition
@$scope.$on "#{@$scope.name}:clearSelection", (e) =>
@editor.selection.clearSelection()
storeScrollTopPosition: (session) -> storeScrollTopPosition: (session) ->
if @doc_id? if @doc_id?
docPosition = @localStorage("doc.position.#{@doc_id}") || {} docPosition = @localStorage("doc.position.#{@doc_id}") || {}

View file

@ -306,6 +306,7 @@ define [
$http.post("/project/#{$scope.project_id}/thread/#{thread_id}/messages", {content, _csrf: window.csrfToken}) $http.post("/project/#{$scope.project_id}/thread/#{thread_id}/messages", {content, _csrf: window.csrfToken})
.error (error) -> .error (error) ->
ide.showGenericMessageModal("Error submitting comment", "Sorry, there was a problem submitting your comment") ide.showGenericMessageModal("Error submitting comment", "Sorry, there was a problem submitting your comment")
$scope.$broadcast "editor:clearSelection"
$timeout () -> $timeout () ->
$scope.$broadcast "review-panel:layout" $scope.$broadcast "review-panel:layout"
event_tracking.sendMB "rp-new-comment", { size: content.length } event_tracking.sendMB "rp-new-comment", { size: content.length }