* fix page shake on load.

This commit is contained in:
Catouse
2020-05-11 10:55:14 +08:00
parent 5aba9e2f4b
commit e11abdc27e
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -34,8 +34,8 @@ $(function()
})
$('#programTableList').on('sort.sortable', function(e, data)
{
var list = '';
{
var list = '';
for(i = 0; i < data.list.length; i++) list += $(data.list[i].item).attr('data-id') + ',';
$.post(createLink('project', 'updateOrder'), {'projects' : list, 'orderBy' : orderBy});
});