From bb6becc909294a19a2de2a5b34f9969b6263eab2 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Tue, 7 May 2024 15:29:22 +0800 Subject: [PATCH] Remove debugging code inserted during merge --- scripts/pages/results.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/pages/results.js b/scripts/pages/results.js index ea8e45c..28d69c4 100644 --- a/scripts/pages/results.js +++ b/scripts/pages/results.js @@ -16,7 +16,6 @@ class Page_Results extends Page { this.background(); }; - async background() { // Wait until a change in the session storage. observe((changes) => { @@ -137,9 +136,6 @@ class Page_Results extends Page { // Set the color. (nested.dictionary.get(this[`data`][`analysis`], [`Rating`, `Trust`]) && document.querySelector(`summary`)) ? document.querySelector(`summary`).setAttribute(`result`, (nested.dictionary.get(this[`data`][`analysis`], [`Rating`, `Trust`]))) : false; } - - // Display the results in the console. - console.log(this[`data`][`analysis`]) }; }