From 7b465eb591d93505a7873e860750f4dbc9f0e416 Mon Sep 17 00:00:00 2001 From: slowe <299787+slowe@users.noreply.github.com> Date: Tue, 12 Dec 2023 22:54:54 +0000 Subject: [PATCH] Remove console.log line --- 2023-DFES/resources/config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/2023-DFES/resources/config.js b/2023-DFES/resources/config.js index 193a776..7f61653 100644 --- a/2023-DFES/resources/config.js +++ b/2023-DFES/resources/config.js @@ -225,7 +225,6 @@ S(document).ready(function(){ "setScale": function(t){ var abs = document.querySelectorAll("[data-scale='absolute']"); var rel = document.querySelectorAll("[data-scale='relative']"); - console.log('setScale',abs,rel,t); if(abs.length > 0) abs.forEach(function(e){ e.style.display = (t=="absolute") ? '' : 'none'; }); if(rel.length > 0) rel.forEach(function(e){ e.style.display = (t=="relative") ? '' : 'none'; }); return this;