Skip to content

Commit

Permalink
fix(checkbox): Fix background fading too fast (#2122)
Browse files Browse the repository at this point in the history
Fix the checked to unchecked background fade animation which was causing the background to abruptly disappear instead of fade nicely.
  • Loading branch information
patrickrodee committed Jan 29, 2018
1 parent 0a83568 commit d461374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mdc-checkbox/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const strings = {

/** @enum {number} */
const numbers = {
ANIM_END_LATCH_MS: 100,
ANIM_END_LATCH_MS: 250,
};

export {cssClasses, strings, numbers};

0 comments on commit d461374

Please sign in to comment.