Remove usage of 'null' in favor of 'undefined'

This commit is contained in:
Keavon Chambers
2022-08-25 21:32:27 -07:00
parent 1e74ccb4f8
commit 33cb6fcb00
21 changed files with 45 additions and 323 deletions
+2 -2
View File
@@ -24,8 +24,8 @@ function initializeRipples() {
ripples = Array.from(navButtons).map((button) => ({
element: button,
animationStartTime: null,
animationEndTime: null,
animationStartTime: 0,
animationEndTime: 0,
goingUp: false,
}));