mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 18:01:01 +00:00
Control click behaviour on comments; relayout when toggling panels.
This commit is contained in:
parent
caefc196a4
commit
f029c7a7b2
4 changed files with 8 additions and 5 deletions
|
@ -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")
|
||||
|
|
|
@ -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 })
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue