diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-12-16 13:34:01 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-12-16 14:48:15 +0100 |
commit | 89e4ac67c87e919bf382c8ab57b5a92aa99b206c (patch) | |
tree | 7f3f4afbe9bd8f033842385356742be4ed69dfdc /app/javascript/flavours | |
parent | 65e994b29b7c3b06dc61ab5eed35b571ebafdf94 (diff) |
[Glitch] Make animated header resoect `auto_play_gif`
Port part of 7c48688d85d0ab64501cea6b8a516867a786bb4c to glitch-soc
Diffstat (limited to 'app/javascript/flavours')
-rw-r--r-- | app/javascript/flavours/glitch/features/account/components/header.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/account/components/header.js b/app/javascript/flavours/glitch/features/account/components/header.js index f0d36947d..dc5b1447b 100644 --- a/app/javascript/flavours/glitch/features/account/components/header.js +++ b/app/javascript/flavours/glitch/features/account/components/header.js @@ -7,7 +7,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component'; import Avatar from 'flavours/glitch/components/avatar'; import IconButton from 'flavours/glitch/components/icon_button'; -import { me } from 'flavours/glitch/util/initial_state'; +import { autoPlayGif, me } from 'flavours/glitch/util/initial_state'; import classNames from 'classnames'; const messages = defineMessages({ @@ -108,7 +108,7 @@ export default class Header extends ImmutablePureComponent { return ( <div className='account__header__wrapper'> - <div className={classNames('account__header', { inactive: !!account.get('moved') })} style={{ backgroundImage: `url(${account.get('header')})` }}> + <div className={classNames('account__header', { inactive: !!account.get('moved') })} style={{ backgroundImage: `url(${autoPlayGif ? account.get('header') : account.get('header_static')})` }}> <div> <a href={account.get('url')} |