1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-31 12:23:48 +01:00

chrome fix

This commit is contained in:
topkek 2014-11-27 00:36:51 +00:00
parent 2da17bfebe
commit 191347b92e

View File

@ -58,7 +58,7 @@ $(function() {
} else {
treeview_on = false;
$('.post.reply').sort(function(a,b) {
return parseInt(a.id.replace('reply_', '')) > parseInt(b.id.replace('reply_', ''));
return parseInt(a.id.replace('reply_', '')) - parseInt(b.id.replace('reply_', ''));
}).each(function () {
var post = $(this);
var br = post.next();