mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
Fix Invalid calling object in IE
with eval-source-map mode of webpack-dev-server close #7060 ref https://github.com/vuejs/vue/issues/4465
This commit is contained in:
parent
50b9839bb3
commit
0a9a3887b5
@ -16,7 +16,8 @@ export default function getRequestAnimationFrame() {
|
|||||||
return () => {};
|
return () => {};
|
||||||
}
|
}
|
||||||
if (window.requestAnimationFrame) {
|
if (window.requestAnimationFrame) {
|
||||||
return window.requestAnimationFrame;
|
// https://github.com/vuejs/vue/issues/4465
|
||||||
|
return window.requestAnimationFrame.bind(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
const prefix = availablePrefixs.filter(key => `${key}RequestAnimationFrame` in window)[0];
|
const prefix = availablePrefixs.filter(key => `${key}RequestAnimationFrame` in window)[0];
|
||||||
|
Loading…
Reference in New Issue
Block a user