From 102f7ab6625630af8daa102d74e610f84d6bab5f Mon Sep 17 00:00:00 2001 From: Oj Date: Wed, 2 Jun 2021 21:30:00 +0100 Subject: [PATCH] [GenericTheme > Settings] Remove oninput logging --- src/preprocessors/genericTheme.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/preprocessors/genericTheme.js b/src/preprocessors/genericTheme.js index db19a27..3c44600 100644 --- a/src/preprocessors/genericTheme.js +++ b/src/preprocessors/genericTheme.js @@ -121,7 +121,6 @@ export default (manifest, content, repo) => { oninput: (val) => { ${x[2] === 'color' && x[1][0] !== '#' ? `val = parseInt(val.substring(1, 3), 16).toString() + ', ' + parseInt(val.substring(3, 5), 16).toString() + ', ' + parseInt(val.substring(5, 7), 16).toString()` : ''} - console.log(val); document.body.style.setProperty('${x[0]}', val); },