mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 02:57:32 +00:00
Control the visibility of the custom toggler when panes are hidden externally.
This commit is contained in:
parent
2d3f169c49
commit
35d7c96d04
1 changed files with 7 additions and 0 deletions
|
@ -119,6 +119,7 @@ define [
|
|||
customTogglerScope = scope.$new()
|
||||
|
||||
customTogglerScope.isOpen = true
|
||||
customTogglerScope.isVisible = true
|
||||
|
||||
if state[customTogglerPane]?.initClosed == true
|
||||
customTogglerScope.isOpen = false
|
||||
|
@ -132,6 +133,7 @@ define [
|
|||
repositionCustomToggler()
|
||||
customTogglerEl = $compile("
|
||||
<a href
|
||||
ng-show=\"isVisible\"
|
||||
class=\"custom-toggler #{ 'custom-toggler-' + customTogglerPane }\"
|
||||
ng-class=\"isOpen ? 'custom-toggler-open' : 'custom-toggler-closed'\"
|
||||
tooltip=\"{{ isOpen ? tooltipMsgWhenOpen : tooltipMsgWhenClosed }}\"
|
||||
|
@ -186,6 +188,11 @@ define [
|
|||
element.layout().hide("east")
|
||||
else
|
||||
element.layout().show("east")
|
||||
if hasCustomToggler
|
||||
customTogglerEl.scope().$applyAsync () ->
|
||||
customTogglerEl.scope().isOpen = !value
|
||||
customTogglerEl.scope().isVisible = !value
|
||||
|
||||
|
||||
post: (scope, element, attrs) ->
|
||||
name = attrs.layout
|
||||
|
|
Loading…
Reference in a new issue