From 3e0733bf3de382c785fd8929f5a9b644266829f3 Mon Sep 17 00:00:00 2001 From: Senad Uka Date: Mon, 2 May 2016 18:10:54 +0200 Subject: [PATCH] Lower temperature forecast --- app/client/weather.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/client/weather.js b/app/client/weather.js index 09df9f1..6c1af5a 100644 --- a/app/client/weather.js +++ b/app/client/weather.js @@ -1,5 +1,5 @@ var options = { - + location: 44.0123 + ',' + 18.19455, // New Visoko unit: 'c', success: function(weather) { @@ -14,9 +14,8 @@ var options = { html += '
'; html += "

"; html += forecast.high + '°' + weather.units.temp + '

'; - html += "
  • " + daysInBosnian[forecast.day] + ': ' + forecast.text + '
  • '; + html += "
  • Najniža dnevna: "+ forecast.low + ' ° ' + weather.units.temp + "
    " + daysInBosnian[forecast.day] + ': ' + forecast.text + '
  • '; html += "
    "; - } $('#weather').html(html);