()
| 92 | } |
| 93 | |
| 94 | function getCrontab() { |
| 95 | messageBox( |
| 96 | '<p> Do you want to get the crontab file? <br /> A backup will be created automatically before importing.</p>', |
| 97 | 'Confirm crontab retrieval', null, null, function() { |
| 98 | $.get(routes.import_crontab, { 'env_vars': $('#env_vars').val() }, function() { |
| 99 | infoMessageBox('Successfully got the crontab file!', 'Information'); |
| 100 | location.reload(); |
| 101 | }); |
| 102 | }); |
| 103 | } |
| 104 | |
| 105 | function editJob(_id) { |
| 106 | var job = null; |
nothing calls this directly
no test coverage detected