From 10c81d532d10c7bada4ff0a50e3b7ee5c89e81ff Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 30 Nov 2020 17:36:43 -0500 Subject: [PATCH] full dom --- src/facilities/bodyModification/bodyModification.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/facilities/bodyModification/bodyModification.js b/src/facilities/bodyModification/bodyModification.js index 2906d75941d..f0161b7a3b8 100644 --- a/src/facilities/bodyModification/bodyModification.js +++ b/src/facilities/bodyModification/bodyModification.js @@ -611,7 +611,7 @@ App.UI.bodyModification = function(slave, cheat = false) { ) ); if (slave.abortionTat > -1) { - r.push(`<span style="font-style:italic">This will only remove birth tracking</span>`); + r.push(App.UI.DOM.makeElement("span", `This will only remove birth tracking`, "note")); } } else { r.push(`${He} is scheduled to receive a tattoo each time ${he} gives birth.`); @@ -670,7 +670,7 @@ App.UI.bodyModification = function(slave, cheat = false) { ) ); if (slave.birthsTat > -1) { - r.push(`<span style="font-style:italic">This will only remove abortion tracking</span>`); + r.push(App.UI.DOM.makeElement("span", `This will only remove abortion tracking`, "note")); } } else { r.push(`${He} is scheduled to receive a tattoo each time ${he} gets an abortion or miscarries.`); -- GitLab