Y
Hacker News
new
|
ask
|
show
|
jobs
by
codeape
4513 days ago
What would it take to add IE8 support?
2 comments
EvanYou
4513 days ago
It makes heavy use of Object.defineProperty to achieve the plain object syntax instead of dirty checking. Unfortunately in IE8 Object.defineProperty only works on DOM objects and there's no way to shim it for plain JavaScript objects.
link
ams6110
4513 days ago
Why would a new JS framework bother to support a browser that's 3 major revs out of date?
Edit: Possibly you are being sarcastic....
link
codeape
4513 days ago
No not sarcastic. Just wondering.
link
ianstormtaylor
4513 days ago
You'd need to move to an event-based system like Backbone that emits change events on models.
link