I have a Rails 3.2 project with Foundation 4 and I need to support Internet Explorer 8.
To enable the media queries in IE8 needed by the Foundation 4 grid I included Respond.js. I tested in IE8, but the layout remained the small devices layout. The respond.js testpage worked fine in IE8.
Why isn't the Foundation grid properly loaded in IE8?
I previously enabled sass support in Google Chrome and had
config.sass.debug_info = trueinenvironments/development.rband the resulting@media -sass-debug-infoapparently aren't processed by respond.js.Changing
config.sass.debug_infotofalse, emptying thetmp/cache/project folder and restarting the rails server solved this issue.edit
Apparently I also have to set
to completely disable the sass debug media queries.