From d46137485aab76304d17214b706265c17ca94e82 Mon Sep 17 00:00:00 2001 From: Patty RoDee Date: Mon, 29 Jan 2018 12:12:51 -0800 Subject: [PATCH] fix(checkbox): Fix background fading too fast (#2122) Fix the checked to unchecked background fade animation which was causing the background to abruptly disappear instead of fade nicely. --- packages/mdc-checkbox/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mdc-checkbox/constants.js b/packages/mdc-checkbox/constants.js index 6c370d27fb8..d27ac878865 100644 --- a/packages/mdc-checkbox/constants.js +++ b/packages/mdc-checkbox/constants.js @@ -43,7 +43,7 @@ const strings = { /** @enum {number} */ const numbers = { - ANIM_END_LATCH_MS: 100, + ANIM_END_LATCH_MS: 250, }; export {cssClasses, strings, numbers};