[kronolith] issue on Firefox 134

Pascal Rigaux pascal.rigaux at univ-paris1.fr
Thu Jan 9 11:34:50 UTC 2025


Hi,

Since Firefox 134, our users have issues on Kronolith for day/week/workweek views.

The issue comes from:

     spacing = td.up('table').getStyle('borderSpacing');
     ...
     spacing = spacing ? parseInt($w(spacing)[1], 10) : 2;

The code expects something like "1px 1px" but Firefox 134 returns "1px"

It corresponds to the CSS: "border-spacing: 1px;"

NB : $w is mostly a string split on spaces.


We used the following fix:

     spacing = spacing ? parseInt($w(spacing).pop(), 10) : 2;


cu
-- 
Pascal Rigaux


More information about the kronolith mailing list