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
It appears Spring is generally compatible with Firefox, but we noticed download options are not functioning in Firefox. I was able to resolve by a small update to the downloadFile function. It is a one line change suggested from this link: https://support.mozilla.org/en-US/questions/968992
Apparently the hidden link being created needs to be attached to the DOM but not in Chrome.
It appears Spring is generally compatible with Firefox, but we noticed download options are not functioning in Firefox. I was able to resolve by a small update to the downloadFile function. It is a one line change suggested from this link:
https://support.mozilla.org/en-US/questions/968992
Apparently the hidden link being created needs to be attached to the DOM but not in Chrome.
Before this line -
SPRING_dev/scripts_1_6_dev/forceLayout_script.js
Line 577 in efe6ab4
I added this to attach to DOM:
document.body.appendChild(hiddenElement)
The text was updated successfully, but these errors were encountered: