diff --git a/config.json b/config.json index cb9ddbc..e765b1f 100644 --- a/config.json +++ b/config.json @@ -35,7 +35,7 @@ "disableDate": false, "disableSearchBar": false, "disable24Hour": false, - "disableWeather": true, + "disableWeather": false, "weatherConf": { "location": "Pune India", "unit": "fah" diff --git a/js/main.js b/js/main.js index aa3aedf..84c7fea 100644 --- a/js/main.js +++ b/js/main.js @@ -123,7 +123,7 @@ function updateTimeHook() { } function getFahrenheit(inCelcius) { - return (inCelcius * 9 / 5) + 32 + return ((inCelcius * 9 / 5) + 32).toFixed(2) } function indexUppercase(unformatted) {