From 7182f1d9a55a20111d54dd9fa5da5bd70e2477a5 Mon Sep 17 00:00:00 2001 From: Quentin Decaunes Date: Sat, 2 Mar 2019 16:21:31 +0100 Subject: [PATCH] Removed useless logs. --- js/methods.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/methods.js b/js/methods.js index 29f2f06..13ff469 100644 --- a/js/methods.js +++ b/js/methods.js @@ -263,11 +263,9 @@ function reApplyPeriodically(seconds) { * Display tooltip on each options. */ function displayOptionDescription() { - appendLog("displayOptionDescription():"); const options_description = require('./js/options_description.json'); for (const option in options_description) { if (options_description.hasOwnProperty(option)) { - appendLog(`- option: ${option}`); const description = options_description[option]; const node = document.getElementById(option).parentElement.parentElement; node.setAttribute('uk-tooltip', description);