mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Loading overlays added to Series/Details, Upcoming and History views.
This commit is contained in:
parent
7deea327b8
commit
26b7bc5c53
7 changed files with 178 additions and 150 deletions
11
NzbDrone.Web/Scripts/gridLoad.js
Normal file
11
NzbDrone.Web/Scripts/gridLoad.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
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');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue