app/assets/javascripts/concerto_weather/weather.js in concerto_weather-0.0.9 vs app/assets/javascripts/concerto_weather/weather.js in concerto_weather-0.1.0
- old
+ new
@@ -19,10 +19,10 @@
$(woeidName).text('');
}
if (info_el.length != 0) {
// we found the summary box
- $(info_el).empty().html('<i class=\"ficon-spinner icon-spin\"></i> searching...');
+ $(info_el).empty().html('<i class=\"fa fa-spinner fa-spin\"></i> searching...');
$.ajax({
url: "//query.yahooapis.com/v1/public/yql?q=" + encodeURIComponent("select woeid, placeTypeName, name, admin1, admin2, country from geo.places where (text = \"" + woeid + "\" or woeid = \"" + woeid + "\") limit 5") + "&format=json",
dataType: 'jsonp',
timeout: 4000,
success: function (data) {