Cursor after changing picture via ajax
-
Hi,
I would report that on /nextgen-gallery/products/photocrati_nextgen/modules/nextgen_gallery_display/static/common.js there is, @line 47 a code that changes the cursor to wait:
$('body, a').css('cursor', 'wait');
Actually this acts on the whole body and the next:
$('body, a').css('cursor', 'auto');
@line 56 doesn’t really restore the original cursors. I think it would be better changing the cursor just for the image container instead of changing to the whole page, so replace line 47 with:
$('body .ngg-imagebrowser a').css('cursor', 'wait');
and so line 56 with:
$('body .ngg-imagebrowser a').css('cursor', 'auto');
(or default)Thanks ??
- The topic ‘Cursor after changing picture via ajax’ is closed to new replies.