2014-12-11 15:46:01 -05:00
|
|
|
$(document).ready(function() {
|
2014-12-11 16:33:20 -05:00
|
|
|
var trendingRequestXhr = null;
|
|
|
|
|
2014-12-11 15:46:01 -05:00
|
|
|
function loadContent() {
|
2014-12-11 16:33:20 -05:00
|
|
|
if (trendingRequestXhr) trendingRequestXhr.abort();
|
|
|
|
|
2014-12-11 16:15:08 -05:00
|
|
|
$('#trendingShows').html('<img id="searchingAnim" src="' + sbRoot + '/images/loading32' + themeSpinner + '.gif" height="32" width="32" /> loading trending shows...');
|
2014-12-11 16:33:20 -05:00
|
|
|
trendingRequestXhr = $.ajax({
|
|
|
|
url: sbRoot + '/home/addShows/getTrendingShows/',
|
|
|
|
timeout: 60 * 1000,
|
|
|
|
error: function () {
|
|
|
|
$('#trendingShows').empty().html('Trakt timed out, refresh page to try again');
|
|
|
|
},
|
|
|
|
success: function (data) {
|
|
|
|
$('#trendingShows').html(data);
|
|
|
|
}
|
2014-12-11 15:46:01 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
loadContent();
|
|
|
|
});
|