This commit is contained in:
Noli 2022-03-25 20:46:08 +01:00
parent 6aaa8d026f
commit 72b74d9ab6
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ function getThrottle(ms) {
} }
timer[id] = setTimeout(function () { timer[id] = setTimeout(function () {
callback(); callback();
delete timer[id]; delete timer[id];
}, ms); }, ms);
} }
} }