lemonmade / bigfoot

A jQuery plugin for creating exceptional footnotes.
http://www.bigfootjs.com
MIT License
936 stars 69 forks source link

Broken layout in IE11 #36

Closed d13r closed 9 years ago

d13r commented 9 years ago

In IE11 the popup is not positioned correctly:

2015-03-22 08_33_46

I tracked it down to window.scrollX/Y in viewportDetails() - these are null in IE11. That causes roomCalc() to return NaN for all values.

I fixed it by replacing that function in bigfoot.js with this, which uses jQuery to get the values:

      viewportDetails = function() {
        var $window = $(window);

        return {
          width: window.innerWidth,
          height: window.innerHeight,
          scrollX: $window.scrollLeft(),
          scrollY: $window.scrollTop()
        };
      };
lemonmade commented 9 years ago

Thanks for the report — fix is in 033a2508e2c32a6aec38de7de01b13bce380eae4.

d13r commented 9 years ago

Thank you! :+1: