-
Notifications
You must be signed in to change notification settings - Fork 436
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
IE8 support #30
Comments
Do any Ruby devs actually use IE8? |
Yes! Not by choice of course, but because we need to make things that will at least work in IE8. |
Fair point. Couple of questions:
|
Oh it's ridiculously simple! Something like: var elements = 'section nav header footer audio'.split(" ");
for (var i=0; i<elements.length; ++i) { document.createElement(element); } (I think this one will actually work as is) |
👍 |
Could we get away with simply not using html5 tags? I think having semantically-meaningful markup is sort of moot in this case. |
I'd like that better if @charliesome would agree |
On the other hand, this tool seems primarily useful for rapidly debugging back-end problems. Hopefully people aren't having to do that from ie8. ie8-specific problems seem like they're mostly going to lie in the layout/rendering realm, and possibly in the network transport realm. Problems like this I think are better served by tools like Fiddler/Charles, and browser-based tools seem like they won't be much help. Given the three choices:
I'd probably just choose number 3, since it requires the fewest code changes. |
I am happy with any of those 3 options - what do you think @rstacruz?
|
better_errors is a development tool. The only people this would affect is a dev working at a place of business running Windows XP where installations are locked down. AFAIK that's the only situation where:
Because of that number 3 is my choice. Let's keep development moving forward. On the value-to-time ratio this seems like this issue should be closed and marked |
The page needs an html5shiv. We need to make one without external dependencies, though.
The text was updated successfully, but these errors were encountered: