fix data table height: Firefox treats scrollY as minimum height

This commit is contained in:
Norbert Renner 2015-05-22 14:31:35 +02:00
parent 109eeb471c
commit 224e59380f

View file

@ -67,8 +67,10 @@ BR.TrackMessages = L.Class.extend({
paging: false,
searching: false,
info: false,
scrollY: 330,
scrollX: 370,
// flexbox workaround: without scrollY height Firefox extends to content height
// (^= minimum height with flexbox?)
scrollY: 50,
scrollX: true,
scrollCollapse: true,
order: []
});