mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 19:00:09 -04:00
12 lines
349 B
JavaScript
12 lines
349 B
JavaScript
import debug from 'debug';
|
|
|
|
export const logger = debug('redash:directives');
|
|
|
|
export const requestAnimationFrame = window.requestAnimationFrame ||
|
|
window.webkitRequestAnimationFrame ||
|
|
window.mozRequestAnimationFrame ||
|
|
window.msRequestAnimationFrame ||
|
|
function requestAnimationFrameFallback(callback) {
|
|
setTimeout(callback, 10);
|
|
};
|