Force pager to draw scrollbars on FireFox

Jonathan Frederic 10 years ago
parent 429693675b
commit 71c905574e

@ -78,6 +78,13 @@ define([
// This allows the pager-contents div to use percentage sizing.
that.pager_element.height(that.pager_element.height());
that._resize();
// HACK: Less horrible, but still horrible hack to force the
// pager to show it's scrollbars on FireFox. ipython/ipython/#8853
that.pager_element.css('position', 'relative');
window.requestAnimationFrame(function() { /* Wait one frame */
that.pager_element.css('position', '');
});
});
});

Loading…
Cancel
Save