diff options
author | August Skare <post@augustskare.no> | 2018-11-07 20:01:53 +0800 |
---|---|---|
committer | August Skare <post@augustskare.no> | 2018-11-07 20:01:53 +0800 |
commit | 31f096248ddb61599fbabbfc905ea7717de1283a (patch) | |
tree | 04b6990b260962a8bf25316f37b8264ad40e6938 /packages/dev-tools-pages/ts/components | |
parent | d91c41b29c5918752306544ec1875d4e68a975fa (diff) | |
download | dexon-sol-tools-31f096248ddb61599fbabbfc905ea7717de1283a.tar dexon-sol-tools-31f096248ddb61599fbabbfc905ea7717de1283a.tar.gz dexon-sol-tools-31f096248ddb61599fbabbfc905ea7717de1283a.tar.bz2 dexon-sol-tools-31f096248ddb61599fbabbfc905ea7717de1283a.tar.lz dexon-sol-tools-31f096248ddb61599fbabbfc905ea7717de1283a.tar.xz dexon-sol-tools-31f096248ddb61599fbabbfc905ea7717de1283a.tar.zst dexon-sol-tools-31f096248ddb61599fbabbfc905ea7717de1283a.zip |
lower deboune on animation resize
Diffstat (limited to 'packages/dev-tools-pages/ts/components')
-rw-r--r-- | packages/dev-tools-pages/ts/components/Animations/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/Animations/index.tsx b/packages/dev-tools-pages/ts/components/Animations/index.tsx index bf35c0784..f750d4d94 100644 --- a/packages/dev-tools-pages/ts/components/Animations/index.tsx +++ b/packages/dev-tools-pages/ts/components/Animations/index.tsx @@ -40,7 +40,7 @@ class Animation extends React.PureComponent<AnimationProps, AnimationState> { handleResize() { clearTimeout(this.timeout); - this.timeout = setTimeout(this.updateAnimationSize, 200); + this.timeout = setTimeout(this.updateAnimationSize, 50); } updateAnimationSize() { |