polyfill.js 233 B

1234
  1. //IE Fix, src: https://www.reddit.com/r/programminghorror/comments/6abmcr/nodelist_lacks_foreach_in_internet_explorer/
  2. if (typeof(NodeList.prototype.forEach)!==typeof(alert)){
  3. NodeList.prototype.forEach=Array.prototype.forEach;
  4. }