diff --git a/Weather App b/Weather App new file mode 100644 index 0000000..ed25493 --- /dev/null +++ b/Weather App @@ -0,0 +1,26 @@ +var injectedForecast = { + key: 'newyork', + label: 'New York, NY', + currently: { + time: 1453489481, + summary: 'Clear', + icon: 'partly-cloudy-day', + temperature: 52.74, + apparentTemperature: 74.34, + precipProbability: 0.20, + humidity: 0.77, + windBearing: 125, + windSpeed: 1.52 + }, + daily: { + data: [ + {icon: 'clear-day', temperatureMax: 55, temperatureMin: 34}, + {icon: 'rain', temperatureMax: 55, temperatureMin: 34}, + {icon: 'snow', temperatureMax: 55, temperatureMin: 34}, + {icon: 'sleet', temperatureMax: 55, temperatureMin: 34}, + {icon: 'fog', temperatureMax: 55, temperatureMin: 34}, + {icon: 'wind', temperatureMax: 55, temperatureMin: 34}, + {icon: 'partly-cloudy-day', temperatureMax: 55, temperatureMin: 34} + ] + } + };