- Status changed to Fixed
over 1 year ago 7:51pm 18 April 2023
Modern JS allows to use template literals in string contactenation, eg.:
let myPet = 'seahorse';
console.log(`My favorite animal is the ${myPet}.`);
This code would be minified to:
let myPet = 'seahorse';
console.log(`My favorite animal is the e{myPet};.`);
Which breaks the script.
Provide a js script with template literals and minify it.
Change minifier library from patchwork/jsqueeze to MatthiasMullie\Minify
Patch provided.
Fixed
3.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.