mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 10:55:56 +03:00
[GH-ISSUE #137] IE11 aborts upload after 30s #97
Labels
No labels
Feature
Feature
Is It Really an Issue?
Need More Info
Request
Security
bug
duplicate
enhancement
enhancement
help wanted
invalid
pull-request
question
suggestion
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tinyfilemanager#97
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @crispyduck00 on GitHub (Mar 12, 2019).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/137
IE11 aborts the ajax file upload always after 30s.
Trying to analyze this I found out that IE also does not like following syntax:
Researching for the upload issue with IE11 I came across a post which mentioned that it helps to add a empty function for in progress. So I changed the code as followed, which does no more throw a syntax error and also solves the IE file upload:
As I am no developer, I have no idea if I am doing it correct, but this seems to fix the Problems with IE and does also not lead to problems with other browsers.
regards,
crispyduck
@prasathmani commented on GitHub (Mar 13, 2019):
Fixed
@crispyduck00 commented on GitHub (Mar 13, 2019):
Perfect Thanks!