Skip to content

Commit

Permalink
fixed cutoff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
colarusso committed Aug 13, 2024
1 parent 832ebc2 commit 2797241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/functions.js
Original file line number Diff line number Diff line change
@@ -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);
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 2797241

Please sign in to comment.