diff --git a/public/funbox/list.json b/public/funbox/list.json index 3778c5507..839d45892 100644 --- a/public/funbox/list.json +++ b/public/funbox/list.json @@ -11,7 +11,7 @@ "type": "style" }, { - "name": "rorrim", + "name": "mirror", "type": "style" }, { diff --git a/public/funbox/rorrim.css b/public/funbox/mirror.css similarity index 100% rename from public/funbox/rorrim.css rename to public/funbox/mirror.css diff --git a/public/js/settings.js b/public/js/settings.js index 1133aa93d..888b77271 100644 --- a/public/js/settings.js +++ b/public/js/settings.js @@ -49,11 +49,22 @@ function updateSettingsPage() { let funboxEl = $(".pageSettings .section.funbox .buttons").empty(); funboxEl.append(`
none
`); funboxList.forEach((funbox) => { - funboxEl.append( - `
${funbox.name.replace(/_/g, " ")}
` - ); + if (funbox.name === "mirror") { + funboxEl.append( + `
${funbox.name.replace( + /_/g, + " " + )}
` + ); + } else { + funboxEl.append( + `
${funbox.name.replace(/_/g, " ")}
` + ); + } }); let fontsEl = $(".pageSettings .section.fontFamily .buttons").empty();