Fix missing call to StoreClocks() after removing a clock

master
Harald Wolff 2022-01-11 19:54:29 +01:00
parent d2e3b3c097
commit 806af90bf1
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ function removeClock(clock){
let i = clocks.indexOf(clock);
clocks.splice(i, 1);
$(clock).remove();
StoreClocks();
}
function createClock(){