mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
16 lines
438 B
JavaScript
16 lines
438 B
JavaScript
/**
|
|
* Simple throttle function that executes a passed function only once in the specified timeout
|
|
* @param handlerFunc
|
|
* @param [timeout] the throttle interval
|
|
*/
|
|
export function throttle(handlerFunc, timeout = 66) {
|
|
let resizeTimeout
|
|
if (!resizeTimeout) {
|
|
resizeTimeout = setTimeout(() => {
|
|
resizeTimeout = null
|
|
handlerFunc()
|
|
// The actualResizeHandler will execute at a rate of 15fps
|
|
}, timeout)
|
|
}
|
|
}
|