Control click behaviour on comments; relayout when toggling panels.

This commit is contained in:
Paulo Reis 2016-11-18 15:08:16 +00:00
parent caefc196a4
commit f029c7a7b2
4 changed files with 8 additions and 5 deletions

View file

@ -154,6 +154,7 @@ script(type='text/ng-template', id='commentEntryTemplate')
textarea.rp-comment-input(
ng-model="entry.replyContent"
ng-keypress="handleCommentReplyKeyPress($event);"
stop-propagation="click"
placeholder="{{ 'Hit \"Enter\" to reply' + (entry.resolved ? ' and re-open' : '') }}"
)
.rp-comment-resolved-description(ng-if="entry.resolved && !entry.showWhenResolved")

View file

@ -38,8 +38,6 @@ define [
$scope.$watch "reviewPanel.subView", (subView) ->
return if !subView?
updateScrollbar()
if subView == $scope.SubViews.CUR_FILE
$scope.$broadcast "review-panel:layout"
$scope.$watch "ui.reviewPanelOpen", (open) ->
return if !open?
@ -155,7 +153,7 @@ define [
$scope.setSubView = (subView) ->
$scope.reviewPanel.subView = subView
$scope.gotoEntry = (doc_id, entry) ->
console.log "Going to entry", entry.docPos
ide.editorManager.openDocId(doc_id, { gotoLine: entry.docPos.row + 1, gotoColumn: entry.docPos.column })

View file

@ -79,12 +79,15 @@ define [
entry.$callout_el.css(top: top + line_height + 1, height: original_top - top)
sl_console.log "ENTRY", {entry: entry.scope.entry, top}
scope.$applyAsync () ->
layout()
scope.$watch "reviewPanel.entryGeneration", (value) ->
scope.$evalAsync () ->
scope.$applyAsync () ->
layout()
scope.$on "review-panel:layout", () ->
scope.$evalAsync () ->
scope.$applyAsync () ->
layout()
## Scroll lock with Ace

View file

@ -206,6 +206,7 @@
border-radius: 0;
padding: 2px 5px;
border-bottom: solid 1px @rp-border-grey;
cursor: pointer;
}
border-left: solid @rp-entry-ribbon-width transparent;