From 9ec371097e545dee8cc35d00812b363972c48ba7 Mon Sep 17 00:00:00 2001 From: ezsh <ezsh.junk@gmail.com> Date: Tue, 18 Jun 2019 16:59:13 +0200 Subject: [PATCH] RA UI: rename NumberRange -> NumericTargetEditor --- src/js/rulesAssistantOptions.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js index fbec34ce4e4..466e2f84aa7 100644 --- a/src/js/rulesAssistantOptions.js +++ b/src/js/rulesAssistantOptions.js @@ -627,7 +627,7 @@ window.rulesAssistantOptions = (function() { } } - class NumberRange extends EditorWithShortcuts { + class NumericTargetEditor extends EditorWithShortcuts { /** * @param {string} prefix * @param {Array} [data=[]] @@ -2113,7 +2113,7 @@ window.rulesAssistantOptions = (function() { } } - class BreastGrowthList extends NumberRange { + class BreastGrowthList extends NumericTargetEditor { constructor() { const pairs = [ ["B-Cup", 350], @@ -2128,7 +2128,7 @@ window.rulesAssistantOptions = (function() { } } - class ButtGrowthList extends NumberRange { + class ButtGrowthList extends NumericTargetEditor { constructor() { const pairs = [ ["cute", 2], @@ -2143,7 +2143,7 @@ window.rulesAssistantOptions = (function() { } } - class LipGrowthList extends NumberRange { + class LipGrowthList extends NumericTargetEditor { constructor() { const pairs = [ ["plump", 25], @@ -2157,7 +2157,7 @@ window.rulesAssistantOptions = (function() { } } - class DickGrowthList extends NumberRange { + class DickGrowthList extends NumericTargetEditor { constructor() { const pairs = [ ["above average", 4], @@ -2171,7 +2171,7 @@ window.rulesAssistantOptions = (function() { } } - class BallGrowthList extends NumberRange { + class BallGrowthList extends NumericTargetEditor { constructor() { const pairs = [ ["sizable", 4], @@ -2458,7 +2458,7 @@ window.rulesAssistantOptions = (function() { } } - class MuscleList extends NumberRange { + class MuscleList extends NumericTargetEditor { constructor() { const pairs = [ ["none", 0], @@ -3735,7 +3735,7 @@ window.rulesAssistantOptions = (function() { } } - class LipSurgeryList extends NumberRange { + class LipSurgeryList extends NumericTargetEditor { constructor() { const items = [ ["removed", 0], @@ -3750,7 +3750,7 @@ window.rulesAssistantOptions = (function() { } } - class ButtSurgeryList extends NumberRange { + class ButtSurgeryList extends NumericTargetEditor { constructor() { const items = [ ["removed", 0], @@ -3765,7 +3765,7 @@ window.rulesAssistantOptions = (function() { } } - class BreastSurgeryList extends NumberRange { + class BreastSurgeryList extends NumericTargetEditor { constructor() { const items = [ ["removed", 0], -- GitLab