IE8 throws an error related to the Borealis JS:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727)
Timestamp: Mon, 3 Jun 2013 18:28:01 UTC
Message: 'undefined' is null or not an object
Line: 316
Char: 5
Code: 0
URI: http://nrf.local/sites/all/modules/contrib/borealis/borealis_ri/js/borea...

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

tjhellmann’s picture

I ran into this same error. Even though there is a polyfill in place for IE8, var parentDisplay = getComputedStyle(parentNode).display; comes back undefined. I tried running a test for it and setting parentDisplay to the width of the browser window as a fallback.
Something like:

    if  (typeof(parentDisplay) == 'undefined' || parentDisplay == null) {
      return document.documentElement.clientWidth;
    }

Maybe not ideal but hopefully helps toward a better solution.

mherchel’s picture

Issue summary: View changes
FileSize
640 bytes

Confirmed that this issue still exists in latest dev.

The changes in #1 do fix this for me (and cause the image to render). I'm attaching a patch to make it a bit easier :)