-
Notifications
You must be signed in to change notification settings - Fork 40
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
Resumable is not defined #24
Comments
Is file resumable.js stored locally correctly ? |
It's in the same folder as the file calling it, is there more to it that I'm missing? |
Put the JS script at the bottom of the page. Make it the last piece to run. |
Tried this, didn't change the result. |
I took a whack at this today in at least 3 different browsers all running the console inspector. Eventually found at line 378, written in my code editor like this: (extension.indexOf('') !== -1 && fileType.substr(0, extension.indexOf('')) === extension.substr(0, extension.indexOf('*'))) || turned into this: (extension.indexOf('') !== -1 && fileType.substr(0, extension.indexOf('')) === extension.substr(0, extension.indexOf('*'))) Â || Notice the extra accented A near the end? Also, I realize now that this is a forum for the server side PHP code, I apologize that it is in the wrong place. |
No worries. Close it as it is an editor formatting issue. |
I am trying to learn to work with Resumable.js, and I keep coming up with the following error:
ReferenceError: Resumable is not defined.
In addition, clicking the h1 browseButton tag does not give a response. I have not made any changes to the resumable.js file, and my html in the test file is as follows:
The text was updated successfully, but these errors were encountered: