mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
142e0ae062
* Revert "Revert "DEV: Wrap `Ember.run.debounce`. (#11352)" (#11465)"
This reverts commit aa0d4ea764
.
* Correctly debounce onScroll function
16 lines
525 B
JavaScript
16 lines
525 B
JavaScript
import { debounce, run } from "@ember/runloop";
|
|
import { isTesting } from "discourse-common/config/environment";
|
|
/**
|
|
Debounce a Javascript function. This means if it's called many times in a time limit it
|
|
should only be executed once (at the end of the limit counted from the last call made).
|
|
Original function will be called with the context and arguments from the last call made.
|
|
**/
|
|
|
|
export default function () {
|
|
if (isTesting()) {
|
|
return run(...arguments);
|
|
} else {
|
|
return debounce(...arguments);
|
|
}
|
|
}
|