Hello,
I'm trying to use Masonry on IE8 but I have the following error:
'getComputedStyle' is undefined in the mungeNonPixel function.
This error led me to this repository.
The following code is my hotfix to this issue:
if ( window.getComputedStyle || value.indexOf('%') === -1 ) {
return value;
}