1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00
This commit is contained in:
farr3ll
2012-11-30 04:52:01 +02:00
parent e299bb7fd4
commit f836982f84

View File

@@ -62,11 +62,11 @@ $(document).ready(function()
}
else if(sort == 'desc')
{
$(a.html).prependTo('#comments-container').hide().slideDown(800); // FIXME - works in jquery 1.7, not 1.8
$('#comments-container').prepend(a.html).hide().slideDown(800); // FIXME - works in jquery 1.7, not 1.8
}
else
{
$(a.html).appendTo('#comments-container').hide().slideDown(800); // FIXME - works in jquery 1.7, not 1.8
$('#comments-container').append(a.html).hide().slideDown(800); // FIXME - works in jquery 1.7, not 1.8
alert('Thank you for commenting'); // possibly needed as the submission may go unoticed by the user
}