From aaa593e846e3f44049e33d191ffb34130028a0e1 Mon Sep 17 00:00:00 2001 From: MattMo Date: Tue, 11 Jul 2023 08:08:23 -0700 Subject: [PATCH] Removed old code that would try to force ignite properties to stay as the same value type as their previous value. This causes issues and the developer should be free to set properties to whatever value they want. --- ignite-html.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ignite-html.js b/ignite-html.js index 5effb8d..bfe3eec 100644 --- a/ignite-html.js +++ b/ignite-html.js @@ -107,17 +107,6 @@ class IgniteProperty { //Get the old value var old = this._value; - //Based on the old value, see if we need to convert the new value to match the original type. - if (typeof old === typeof true) { - val = val != null && val != undefined ? val.toString().toLowerCase().trim() : val; - val = val == "true" || val == "1" || val == "yes" || val == "t" || val == "y"; - } else if (typeof old === typeof 0) { - val = Number(val != null && val != undefined ? val.toString().trim() : "0"); - val = isNaN(val) ? 0 : val; - } else if (typeof old === typeof "") { - val = val != null && val != undefined ? val.toString() : null; - } - //Set the new value this._value = val;