mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 11:55:03 -05:00
12 lines
388 B
JavaScript
12 lines
388 B
JavaScript
|
$(document).ready(function() {
|
||
|
function loadContent() {
|
||
|
$('#container').html('<img id="searchingAnim" src="' + sbRoot + '/images/loading32' + themeSpinner + '.gif" height="32" width="32" /> loading trending shows...');
|
||
|
$.get(sbRoot+'/home/addShows/getTrendingShows/', function(data) {
|
||
|
$('#container').html(data);
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
loadContent();
|
||
|
});
|