marcelklehr/vdom-virtualize

IE8 issues

Opened this issue · 3 comments

Following stuff fails in IE8:

  • IMG tag
  • style attribute
  • data-attributes are not saved: there is no dataset

(I'm splitting up your pull request into smaller chunks)

niksy commented

It seems like IE8 needs polyfills for specific features:

  • Array.prototype.forEach
  • Array.prototype.reduce
  • Array.prototype.slice on host objects

These can be applied via shims like "es5-shim" or using ponyfills. I don’t know if this is really necessary but it can make it easier to make vdom-virtualize to work with older environments.