-
Notifications
You must be signed in to change notification settings - Fork 215
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
Deferred.resolve not passing data... Works in chrome. #95
Comments
Firefox expects a real promise, from the same scope of the script (i.e. Don't use jQuery's |
Thanks for the info -- I thought the defd.promise() returned an actual promise or at least something that could be cast to one... Is that not the case for this? |
Just wanted to point out that Chrome seems to wrap the return in a Promise by default, while Firefox simply resolves to undefined. Works like a charm when wrapping the return in a Promise though. |
In Firefox, the polyfill doesn't do anything since the
|
We will document more clearly that the polyfill does not do anything in Firefox (#55). |
Extension pop up window sends message requesting important info:
Background page receives:
In Chrome "42" is logged to the console from the line in the then after the sendMessage. Firefox throws a "TypeError: response is undefined".
Thanks for the assistance in advance.
The text was updated successfully, but these errors were encountered: