Only show hand cursor on collapsed form

This commit is contained in:
Hylke Bons 2011-06-23 00:09:31 +01:00
parent 16e0775c35
commit 031c82dd59

View file

@ -8,6 +8,8 @@
$('.comments-wrapper').each (function () {
if ($(this).find ('.comments').children ().size () < 1) {
$(this).hide ();
} else {
$(this).css ('cursor', 'default');
}
});