FIX #6 redirect after saving event
This commit is contained in:
parent
1b9232efb1
commit
7e6735b438
1 changed files with 4 additions and 1 deletions
|
@ -32,7 +32,10 @@ $(function() {
|
|||
});
|
||||
jQuery.post(
|
||||
'{{routeprefix}}/db/api/alarm/' + my_id + '/actions',
|
||||
{"actions[]": ids.toArray()}
|
||||
{"actions[]": ids.toArray()},
|
||||
function onSuccess(data, textStatus, xhr) {
|
||||
window.location.href = "{{routeprefix}}/db/list";
|
||||
}
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue