mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
11 lines
381 B
JavaScript
11 lines
381 B
JavaScript
function grid_bind(args) {
|
|
var id = this.attributes[0].textContent;
|
|
var parent = $('#' + id).parent();
|
|
parent.children('.grid-loader').stop().css("top", "0px").fadeIn('slow');
|
|
}
|
|
|
|
function grid_bound(args) {
|
|
var id = this.attributes[0].textContent;
|
|
var parent = $('#' + id).parent();
|
|
$('.grid-container').children('.grid-loader').stop().fadeOut('slow');
|
|
} |