Skip to content
Snippets Groups Projects
Commit a55f6ca5 authored by deuce's avatar deuce
Browse files

Add short_ where needed.

parent 737ede4a
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ function get_high_temp(forecasts) {
function get_forecast_day(forecasts) {
var forecast_utc = forecasts[0].dt * 1000;
var forecast_date = new Date(forecast_utc);
var day_str = days[forecast_date.getDay()] + ', ' + months[forecast_date.getMonth()] + ' ' + forecast_date.getDate();
var day_str = short_days[forecast_date.getDay()] + ', ' + short_months[forecast_date.getMonth()] + ' ' + forecast_date.getDate();
return "\1n\1w" + day_str;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment