1
0
Fork 0

Minor changes

master
David Peer 2022-05-07 16:35:16 +02:00
parent d063eaae21
commit d07124b749
1 changed files with 5 additions and 5 deletions

View File

@ -186,9 +186,9 @@ function animateColor(speed, fun){
draw(false, 0); draw(false, 0);
fun(); fun();
} }
), speed+5; ), speed;
}, speed+5); }, speed);
}, speed+5); }, speed);
}, speed); }, speed);
} }
@ -202,8 +202,8 @@ Bangle.on('lock', function(isLocked) {
} }
// Animate in case the use selected this setting. // Animate in case the use selected this setting.
animateColor(25, function(){ animateColor(5, function(){
animateColor(25, function(){}); animateColor(5, function(){});
}); });
}); });