-
Notifications
You must be signed in to change notification settings - Fork 3
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
Doesn't work in Internet Explorer #20
Comments
What I've found so far is that at least there is an issue related to how Now, I'm not sure where to land this fix since |
I think it's best to do feature detection (as opposed to browser detection), something like: if (node.remove) {
node.remove();
} else if (node.parentNode && node.parentNode.remove) {
node.parentNode.remove();
} else {
// ???
} I'd be ok with merging something like that into brackets core.
Yes! |
Initial page loads, but almost nothing else works in IE. I'm using Version 11.0.9600.17239 on Win7.
IE does not update even after saving page in Brackets. Interesting that if you Reload page from IE it pickups changes -- even unsaved changes in Brackets! So, it seems like text is getting updated in browser, but browser is not refreshing.
The text was updated successfully, but these errors were encountered: