// Generated by CoffeeScript 1.6.1 (function() { $.simpleWeather({ zipcode: "84095", woeid: "2496395", location: "", unit: "f", success: function(weather) { var html; html = "
Partly Cloudy
" + weather.temp + "°
" + weather.high + "
" + weather.low + "
SaturdaySunny
" + weather.tomorrow.high + "" + weather.tomorrow.low + "
"; return $("#weather").html(html); }, error: function(error) { return $("#weather").html("

" + error + "

"); } }); }).call(this);