diff --git a/HTML/index.html b/HTML/index.html
index 43804a6..b3f8ee8 100644
--- a/HTML/index.html
+++ b/HTML/index.html
@@ -18,21 +18,6 @@
@@ -78,10 +62,10 @@
ToHms(d) {
d = Number(d);
- var dd = Math.floor(d/86400);
- var h = Math.floor(d%86400/3600);
- var m = Math.floor(d%3600/60);
- var s = Math.floor(d%3600%60);
+ dd = Math.floor(d/86400);
+ h = Math.floor(d%86400/3600);
+ m = Math.floor(d%3600/60);
+ s = Math.floor(d%3600%60);
return (' '+dd+'d '+(h<10?"0":"")+h+":"+(m<10?"0":"")+m+":"+(s<10?"0":"")+s);}
},
mounted() {
@@ -98,31 +82,4 @@
}).mount('#app');