You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
Im using IE11 on WIn10 in VirtualBox. Vue-resource is version 1.5.1. Vue: 2.5.17
What is Expected?
executor.bind should be defined as a function
What is actually happening?
When i call this.$http.get, it will fire a request. It goes trough some internals and it will end up in this part.
`function PromiseObj(executor, context) {
if (executor instanceof Promise) {
this.promise = executor;
} else {
this.promise = new Promise(executor.bind(context));
}
this.context = context;
}`
This function is ran multiple times, usually working good, but on third time the executor does not have .bind function and the app will fail. This is only happening in IE11, Firefox, Safari and Chrome works well.
typeof executor returns object.
See screenshots attached
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Reproduction Link
https://jsfiddle.net/f71oh0sb/1/
Steps to reproduce
Im using IE11 on WIn10 in VirtualBox. Vue-resource is version 1.5.1. Vue: 2.5.17
What is Expected?
executor.bind should be defined as a function
What is actually happening?
When i call this.$http.get, it will fire a request. It goes trough some internals and it will end up in this part.
`function PromiseObj(executor, context) {
}`
This function is ran multiple times, usually working good, but on third time the executor does not have .bind function and the app will fail. This is only happening in IE11, Firefox, Safari and Chrome works well.
typeof executor
returns object.See screenshots attached
The text was updated successfully, but these errors were encountered: