diff --git a/files/assets/js/fix_collapse_lines.js b/files/assets/js/fix_collapse_lines.js index ebce4bd816..c230615396 100644 --- a/files/assets/js/fix_collapse_lines.js +++ b/files/assets/js/fix_collapse_lines.js @@ -9,7 +9,9 @@ function deltaRgb (rgb1, rgb2) { return Math.sqrt(2 * drp2 + 4 * dgp2 + 3 * dbp2 + t * (drp2 - dbp2) / 256) } -const toRGBArray = rgbStr => rgbStr.match(/\d+/g).map(Number); +function toRGBArray(rgbStr) { + return rgbStr.match(/\d+/g).map(Number); +} const background_color = toRGBArray(getComputedStyle(document.documentElement).getPropertyValue('--background'));