From 9436d1bd4a9dfaefaf7d14d8b06a8d11597d771c Mon Sep 17 00:00:00 2001 From: Vas <whiterocket@outlook.com> Date: Fri, 4 May 2018 19:25:10 +0300 Subject: [PATCH] org --- src/js/rulesAssistantOptions.tw | 47 +++++++++++++++++++++------------ 1 file changed, 30 insertions(+), 17 deletions(-) diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw index 2e40634e2c1..c27550a24a9 100644 --- a/src/js/rulesAssistantOptions.tw +++ b/src/js/rulesAssistantOptions.tw @@ -863,7 +863,7 @@ window.rulesAssistantOptions = (function() { } } - class BehaviourSection extends List { + class BehaviourSection extends Element { constructor() { super() this.appendChild(new LivingStandardList()) @@ -885,6 +885,35 @@ window.rulesAssistantOptions = (function() { } } + class CosmeticSection extends Element { + constructor() { + super() + this.appendChild(EyewearList) + this.appendChild(LensesList) + this.appendChild(MakeupList) + this.appendChild(NailsList) + this.appendChild(HairLengthList) + this.appendChild(HairColourList) + this.appendChild(HairStyleList) + this.appendChild(PubicHairColourList) + this.appendChild(PubicHairStyleList) + this.appendChild(ArmpitHairColourList) + this.appendChild(ArmpitHairStyleList) + } + } + + class BodyModSection extends Element { + constructor() { + super() + } + } + + class SurgerySection extends Element { + constructor() { + super() + } + } + class ClothesList extends List { constructor() { super("Clothes") @@ -1736,22 +1765,6 @@ window.rulesAssistantOptions = (function() { } } - class CosmeticSection extends List { - constructor() { - this.appendChild(EyewearList) - this.appendChild(LensesList) - this.appendChild(MakeupList) - this.appendChild(NailsList) - this.appendChild(HairLengthList) - this.appendChild(HairColourList) - this.appendChild(HairStyleList) - this.appendChild(PubicHairColourList) - this.appendChild(PubicHairStyleList) - this.appendChild(ArmpitHairColourList) - this.appendChild(ArmpitHairStyleList) - } - } - class EyewearList extends List { constructor() { super("Eyewear") -- GitLab