From a2715db98b751caf4aae287a29bda7c44955fd8c Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 17 Feb 2020 16:45:35 -0500 Subject: [PATCH] rename prefix to fs --- src/js/wardrobeUse.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/js/wardrobeUse.js b/src/js/wardrobeUse.js index 199d5a31034..7b978742145 100644 --- a/src/js/wardrobeUse.js +++ b/src/js/wardrobeUse.js @@ -24,7 +24,7 @@ App.UI.Wardrobe.clothes = function(slave) { updateSlave: {clothes: item.value} }; if (item.fs) { - clothingOption.prefix = item.fs; + clothingOption.FS = item.fs; } if (item.comfort === "nice") { niceOptionsArray.push(clothingOption); @@ -79,7 +79,7 @@ App.UI.Wardrobe.clothes = function(slave) { // Test to see if there was a problem with the key for (let j = 0; j < keys.length; j++) { - if (["prefix", "text", "updateSlave", "update", "note", "disabled"].includes(keys[j])) { + if (["FS", "text", "updateSlave", "update", "note", "disabled"].includes(keys[j])) { continue; } else { array[i].text += " ERROR, THIS SCENE WAS NOT ENTERED CORRECTLY"; @@ -104,13 +104,13 @@ App.UI.Wardrobe.clothes = function(slave) { ) ); - if (array[i].prefix) { - let prefix = array[i].prefix.substring(2); - prefix = capFirstChar(prefix); - prefix = prefix.replace(/([A-Z])/g, ` $1`); - prefix = App.UI.DOM.disabledLink(`FS`, [prefix]); - prefix.style.fontStyle = "italic"; - link.appendChild(prefix); + if (array[i].FS) { + let FS = array[i].FS.substring(2); + FS = capFirstChar(FS); + FS = FS.replace(/([A-Z])/g, ` $1`); + FS = App.UI.DOM.disabledLink(`FS`, [FS]); + FS.style.fontStyle = "italic"; + link.appendChild(FS); } // add a note node if required -- GitLab