Skip to content

Commit f4ea4b8

Browse files
Update getresults.html
1 parent 2a7bd75 commit f4ea4b8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

html/NEW_TOOLS/TRIG_CALC/getresults.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,8 @@ <h2>Tool by: <a alt='Altify Developing' title='Altify Developing' href="https://
7878
let v = getAllUrlParams(origin).v
7979
let m = getAllUrlParams(origin).m
8080
let mod = getAllUrlParams(origin).type
81-
let product1pt1 = (v/mod)
82-
let product1pt2 = (product1pt1*(mod*0.01))
83-
let product2pt1 = (m*mod)
84-
let product2pt2 = (product2pt1/(mod/0.01))
81+
let product1 = (v/mod)
82+
let product2 = (m*mod)
8583
document.getElementById("answer1").innerHTML = 'tanθ = '+(Math.tan(a/o))+'<br>sinθ = '+(Math.sin(o/h))+'<br>cosθ = '+(Math.cos(a/h));
86-
document.getElementById("answer2").innerHTML = '<br>youtube monetized = ~ $'+product1pt2+'<br>views to get money = ~'+product2pt2;
84+
document.getElementById("answer2").innerHTML = '<br>youtube monetized = ~ $'+product1+'<br>views to get money = ~'+product2;
8785
</script>

0 commit comments

Comments
 (0)