Added a comma between weather conditions and temperature in panel when "Show comment in panel" is on.

yahoo_weather
Mattia Meneguzzo 13 years ago
parent e9c32cd412
commit 3209078881
  1. 2
      src/extension.js

@ -877,7 +877,7 @@ WeatherMenuButton.prototype = {
if (this._text_in_panel)
weatherInfoT = temperature + ' ' + this.unit_to_unicode();
this._weatherInfo.text = weatherInfoC + ((weatherInfoC)?" ":"") + weatherInfoT;
this._weatherInfo.text = weatherInfoC + ((weatherInfoC)?", ":"") + weatherInfoT;
this._currentWeatherSummary.text = comment + ", " + temperature + ' ' + this.unit_to_unicode();
this._currentWeatherLocation.text = location;

Loading…
Cancel
Save