diff options
author | fuyu <54523771+mfmfuyu@users.noreply.github.com> | 2020-02-03 20:26:00 +0900 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2020-02-06 21:39:26 +0100 |
commit | b9aa57d5bfd53eb73ff4bb5e1beb91ee181345eb (patch) | |
tree | 7c884cfeba3dd7e293e1804a3d3d3fb89501f297 /app/javascript/flavours | |
parent | 1a54b9b99e85e9d6b3c52bfe654659019960eb24 (diff) |
[Glitch] Don't display toggle reveal button in video modal when full screen
Port 5711899c59147252a01e21371994ca6a60418628 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours')
-rw-r--r-- | app/javascript/flavours/glitch/features/video/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/video/index.js b/app/javascript/flavours/glitch/features/video/index.js index 049baaee7..1b5fbce9f 100644 --- a/app/javascript/flavours/glitch/features/video/index.js +++ b/app/javascript/flavours/glitch/features/video/index.js @@ -512,7 +512,7 @@ class Video extends React.PureComponent { </div> <div className='video-player__buttons right'> - {(!onCloseVideo && !editable) && <button type='button' aria-label={intl.formatMessage(messages.hide)} onClick={this.toggleReveal}><Icon id='eye-slash' fixedWidth /></button>} + {(!onCloseVideo && !editable && !fullscreen) && <button type='button' aria-label={intl.formatMessage(messages.hide)} onClick={this.toggleReveal}><Icon id='eye-slash' fixedWidth /></button>} {(!fullscreen && onOpenVideo) && <button type='button' aria-label={intl.formatMessage(messages.expand)} onClick={this.handleOpenVideo}><Icon id='expand' fixedWidth /></button>} {onCloseVideo && <button type='button' aria-label={intl.formatMessage(messages.close)} onClick={this.handleCloseVideo}><Icon id='compress' fixedWidth /></button>} <button type='button' aria-label={intl.formatMessage(messages.download)}> |