Skip to content
Snippets Groups Projects
Commit eb51432d authored by lowercasedonkey's avatar lowercasedonkey
Browse files

doc

parent a2715db9
No related branches found
No related tags found
1 merge request!6135Use setup for wardrobe
......@@ -105,10 +105,9 @@ App.UI.Wardrobe.clothes = function(slave) {
);
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]);
let FS = array[i].FS.substring(2); // Given "FSEdoRevivalist", cut off the first two letters to start a user friendly tooltip
FS = FS.replace(/([A-Z])/g, ` $1`); // Given "EdoRevivalist", find every capital letter and put a space in front of it
FS = App.UI.DOM.disabledLink(`FS`, [FS]); // Tooltip should read "Edo Revivalist"
FS.style.fontStyle = "italic";
link.appendChild(FS);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment