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

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

View File

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