mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* [WEB-2542] fix: list layout issues. * fix: issue type display filter not working. * fix: layout shift when hovered on bulkops checkbox. * fix: build errors. * fix: lint errors
25 lines
587 B
TypeScript
25 lines
587 B
TypeScript
if (typeof window !== "undefined" && window) {
|
|
// Add request callback polyfill to browser incase it does not exist
|
|
window.requestIdleCallback =
|
|
window.requestIdleCallback ??
|
|
function (cb) {
|
|
const start = Date.now();
|
|
return setTimeout(function () {
|
|
cb({
|
|
didTimeout: false,
|
|
timeRemaining: function () {
|
|
return Math.max(0, 50 - (Date.now() - start));
|
|
},
|
|
});
|
|
}, 1);
|
|
};
|
|
|
|
window.cancelIdleCallback =
|
|
window.cancelIdleCallback ??
|
|
function (id) {
|
|
clearTimeout(id);
|
|
};
|
|
}
|
|
|
|
export {};
|