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
When I pass this proxy as an option to html2canvas, my proxy gets the following parameter:
myparam=foo?url=abc.com....
The reason is that the code automatically puts a question mark (?) after the proxy url. The code should check whether there is already a parameter at the end of the url. This was done in the the 0.5 version: proxyUrl + (proxyUrl.indexOf("?") > -1 ? "&" : "?") + "url=" + encodeURIComponent(src)
Please fix.
The text was updated successfully, but these errors were encountered:
I am using a proxy url that contains a parameter:
http://abc.com/myproxy.jsp?myparam=foo
When I pass this proxy as an option to html2canvas, my proxy gets the following parameter:
myparam=foo?url=abc.com....
The reason is that the code automatically puts a question mark (?) after the proxy url. The code should check whether there is already a parameter at the end of the url. This was done in the the 0.5 version:
proxyUrl + (proxyUrl.indexOf("?") > -1 ? "&" : "?") + "url=" + encodeURIComponent(src)
Please fix.
The text was updated successfully, but these errors were encountered: