(_id)
| 49 | var job_command = ''; |
| 50 | |
| 51 | function deleteJob(_id) { |
| 52 | messageBox('<p> Do you want to delete this Job? </p>', 'Confirm delete', null, null, function() { |
| 53 | $.post(routes.remove, {_id: _id}, function() { |
| 54 | location.reload(); |
| 55 | }); |
| 56 | }); |
| 57 | } |
| 58 | |
| 59 | function stopJob(_id) { |
| 60 | messageBox('<p> Do you want to stop this Job? </p>', 'Confirm stop job', null, null, function() { |
nothing calls this directly
no test coverage detected