fix js for ordering

This commit is contained in:
Harry Bomrah 2015-05-07 18:52:31 +08:00
parent 59e7bb9ade
commit b3db1829e3
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@
}
data.push(hash);
}
data = data.sort(function(a,b){return a.index > b.index});
data = data.sort(function(a,b){return a.index - b.index});
renderSortedTable(data,table_element);
}