Add setImmediate polyfill to web, fixing dropdown items
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
/// <reference lib="dom" />
|
||||
|
||||
// @ts-ignore whatever typescript wants to complain about here, I dont care about -prf
|
||||
window.setImmediate = (cb: () => void) => setTimeout(cb, 0)
|
||||
Reference in New Issue
Block a user