diff --git a/.gitignore b/.gitignore index 2373dc792fe2e63207c6ae0959fbb6fab0036ee6..b0c033bca8275b1e5b3c1ff09d8741454f613375 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .DS_Store node_modules .idea +.eslintcache /dist /libs /jd/upload.js diff --git a/src/utils/raf.ts b/src/utils/raf.ts index 966f253a00bee873fc5014a39f3efed98788cc7b..b93f6457d8ac70e7b406b8a62a20ba6eade385c4 100644 --- a/src/utils/raf.ts +++ b/src/utils/raf.ts @@ -2,7 +2,6 @@ function requestAniFrame() { if (typeof window !== 'undefined') { return ( window.requestAnimationFrame || - window.webkitRequestAnimationFrame || function (callback) { window.setTimeout(callback, 1000 / 60) }