You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
390 B
10 lines
390 B
2 years ago
|
var $ = require('../internals/export');
|
||
|
var global = require('../internals/global');
|
||
|
var setTimeout = require('../internals/schedulers-fix').setTimeout;
|
||
|
|
||
|
// ie9- setTimeout additional parameters fix
|
||
|
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout
|
||
|
$({ global: true, bind: true, forced: global.setTimeout !== setTimeout }, {
|
||
|
setTimeout: setTimeout
|
||
|
});
|