From 2797241a8df79b257faff24fe635b634926d5504 Mon Sep 17 00:00:00 2001 From: David Colarusso Date: Tue, 13 Aug 2024 16:16:24 -0400 Subject: [PATCH] fixed cutoff fix --- js/functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/functions.js b/js/functions.js index 0923974..7dbe900 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1,4 +1,4 @@ -var version = "v1.19.4"; +var version = "v1.18.4"; //history.replaceState('', document.title, window.location.pathname); //window.scrollTo(0, 0); @@ -1482,7 +1482,7 @@ function declutter(title_source,id_source,tf_source,n=0){ } if (local_cutoff<=-3.5) { - practical_cutoff = 0; + practical_cutoff = -1*1000; } else { practical_cutoff = local_cutoff; }