diff --git a/web/application.js b/web/application.js index f73585b2..a1087e8b 100644 --- a/web/application.js +++ b/web/application.js @@ -253,7 +253,11 @@ var fetch = function() { $('.ju').html(moment.duration(parseInt(json.u), 'seconds').humanize()); } - $('.jm').html((parseInt(json.m).toFixed(0)/1000).toFixed(1)); + var kib = parseInt(json.m)/1000; + $('.jm').html(kib.toFixed(1)); + if(kib > 32) { + $('.ssl-capable').removeClass('d-none'); + } setStatus("esp", json.em); setStatus("han", json.hm); diff --git a/web/foot.html b/web/foot.html index 4e5f1a17..6055b86c 100644 --- a/web/foot.html +++ b/web/foot.html @@ -1,4 +1,4 @@ -