1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00
SickRage/gui/slick/js/addTrendingShow.js

12 lines
396 B
JavaScript
Raw Normal View History

$(document).ready(function() {
function loadContent() {
$('#trendingShows').html('<img id="searchingAnim" src="' + sbRoot + '/images/loading32' + themeSpinner + '.gif" height="32" width="32" /> loading trending shows...');
$.get(sbRoot+'/home/addShows/getTrendingShows/', function(data) {
$('#trendingShows').html(data);
});
}
loadContent();
});