(_id)
| 57 | } |
| 58 | |
| 59 | function stopJob(_id) { |
| 60 | messageBox('<p> Do you want to stop this Job? </p>', 'Confirm stop job', null, null, function() { |
| 61 | $.post(routes.stop, {_id: _id}, function() { |
| 62 | location.reload(); |
| 63 | }); |
| 64 | }); |
| 65 | } |
| 66 | |
| 67 | function startJob(_id) { |
| 68 | messageBox('<p> Do you want to start this Job? </p>', 'Confirm start job', null, null, function() { |
nothing calls this directly
no test coverage detected