mirror of
https://github.com/e107inc/e107.git
synced 2025-07-30 19:30:25 +02:00
Issue #23
This commit is contained in:
@@ -62,11 +62,11 @@ $(document).ready(function()
|
|||||||
}
|
}
|
||||||
else if(sort == 'desc')
|
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
|
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
|
alert('Thank you for commenting'); // possibly needed as the submission may go unoticed by the user
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user