mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
only set watch on attrs.layoutDisabled when attribute is defined
This commit is contained in:
parent
0453c657da
commit
e62a2c7a6f
1 changed files with 8 additions and 8 deletions
|
@ -103,12 +103,12 @@ define [
|
||||||
|
|
||||||
resetOpenStates()
|
resetOpenStates()
|
||||||
onInternalResize()
|
onInternalResize()
|
||||||
|
|
||||||
scope.$watch attrs.layoutDisabled, (value) ->
|
if attrs.layoutDisabled?
|
||||||
if value
|
scope.$watch attrs.layoutDisabled, (value) ->
|
||||||
element.layout().hide("east")
|
if value
|
||||||
else
|
element.layout().hide("east")
|
||||||
element.layout().show("east")
|
else
|
||||||
|
element.layout().show("east")
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue