You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
381 B
11 lines
381 B
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');
|
|
} |