Don't reset to page 1 on history row delete.

This commit is contained in:
Tim 2015-08-16 23:45:17 +02:00
commit bbcf3bf7da

View file

@ -260,7 +260,7 @@ $('#history_table').on('click', 'td.delete-control', function () {
data: {row_id: rowData['id']},
async: true,
success: function(data) {
history_table.ajax.reload();
history_table.ajax.reload(null, false);
}
});