FIX #6 redirect after saving event

This commit is contained in:
boyska 2018-01-26 00:23:21 +01:00
parent 1b9232efb1
commit 7e6735b438

View file

@ -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";
}
);
});
});