Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE10 - process.nextTick #237

Closed
panthershark opened this issue Nov 12, 2012 · 3 comments · Fixed by #239
Closed

IE10 - process.nextTick #237

panthershark opened this issue Nov 12, 2012 · 3 comments · Fixed by #239

Comments

@panthershark
Copy link

process.nextTick appears to be broken in IE10. The following jsfiddle show the issue.

Here is the entry.js code.

process.nextTick(function() {
  alert('hello');
});

It produces the following browserified code. It should alert on page load, but it does not work in IE.
http://jsfiddle.net/tommydudebreaux/NBfhZ/

Results in SCRIPT65535 Invalid calling object

@ghost
Copy link

ghost commented Nov 12, 2012

Can you try changing:

return window.setImmediate;

in the bundle to read:

return function (f) { return window.setImmediate(f) }

to see if that changes anything? And perhaps put some console.log()s in to see the values of canPost and canSetImmediate.

@panthershark
Copy link
Author

Looks like that works. When can we get that released to npm?

-T

http://jsfiddle.net/tommydudebreaux/NBfhZ/1/

@ghost
Copy link

ghost commented Feb 22, 2013

This functionality is handled by process now. I'll try to get testling-ci tests up on it soon.

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging a pull request may close this issue.

1 participant