mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:36:18 +08:00
83347ac218
This is mostly changes to acceptance tests to allow them to run in both versions of Ember.
19 lines
604 B
JavaScript
19 lines
604 B
JavaScript
import { debounce, next, run } from "@ember/runloop";
|
|
import { isLegacyEmber, 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.
|
|
**/
|
|
|
|
let testingFunc = isLegacyEmber() ? run : next;
|
|
|
|
export default function () {
|
|
if (isTesting()) {
|
|
return testingFunc(...arguments);
|
|
} else {
|
|
return debounce(...arguments);
|
|
}
|
|
}
|