kombai / freewall

Freewall is a cross-browser and responsive jQuery plugin to help you create grid, image and masonry layouts for desktop, mobile, and tablet...
MIT License
1.85k stars 375 forks source link

IE8 error #68

Closed MrSnoop closed 10 years ago

MrSnoop commented 10 years ago

Hi,

Thank you for this awesome plugin! I realized that it did not work below IE9. The reason therefore is, that you used $item.get(0).style=""; in line 297 and it seems that get() is "not implemented" in IE8. by changing this to $item[0].style=""; I was able to fix it :)

kombai commented 10 years ago

Thanks for fix it