-
Notifications
You must be signed in to change notification settings - Fork 146
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
Replaced document.write call that adds VBScript with a document.appendChild call due to the document.write call failing when script is loaded asynchronously #35
Conversation
Cool! Thank you. |
I have to admit, I'm a complete git/github noob and have no idea how to go about doing this. I understand why it'd be beneficial though. How would I go about amending all the commits into a single commit? |
Ah, no worries, I can do it on my side. If you're interested in learning more about it here it is: http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html There's also a lot of good information on github help about git and github itself: https://help.github.com/articles/what-are-other-good-resources-for-learning-git-and-github |
Yep, reading up on rebasing now. I've been an SVN junkie for the last 10 On Mon, Apr 21, 2014 at 1:13 PM, António Afonso [email protected]:
|
Syntax fix, hopefully - Closure compiler doesn't seem to like what I did Still can't get the script to work... Making this simpler for now Think I was adding 2 script tags - oops Seems to work - removing comments
Eh, I just tried and I think I messed something up. Going to leave it On Mon, Apr 21, 2014 at 1:15 PM, Michael Randolph [email protected] wrote:
|
It's ok, the first commit is the one that matters :-) Thank you very much for this! |
Just as the title says. The document.write call that adds the VBScript (presumably for very old IE versions) fails when id3-minimized.js is loaded asynchronously (like in a requirejs project, or similar). I modified this code to instead use document.appendChild. All seems well now.