(_id)
| 73 | } |
| 74 | |
| 75 | function runJob(_id) { |
| 76 | messageBox('<p> Do you want to run this Job? </p>', 'Confirm run job', null, null, function() { |
| 77 | $.post(routes.run, {_id: _id}, function() { |
| 78 | location.reload(); |
| 79 | }); |
| 80 | }); |
| 81 | } |
| 82 | |
| 83 | function setCrontab() { |
| 84 | messageBox('<p> Do you want to set the crontab file? </p>', 'Confirm crontab setup', null, null, function() { |
nothing calls this directly
no test coverage detected