LouisJenkinsCS / WaterQuality

0 stars 4 forks source link

Dan-Dev: Reformatted "=>" for wider browser compatibility #176

Closed dan0x19b closed 7 years ago

dan0x19b commented 7 years ago

Please review this pull, especially confirming that the changes listed below are synonymous with the old code.

• all ()=>{...} replaced with "function(){...}" in .js files. • conversion functions in dashboard.js, such as "x=>x3.4/5.6", replaced with "function(x){return x3.4/5.6;}" • now runs on Internet Explorer. • Error with DataStarting() undefined has been resolved. It was not running the implementation due to syntax errors with "=>" earlier in the code.