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);