()
| 81 | } |
| 82 | |
| 83 | function setCrontab() { |
| 84 | messageBox('<p> Do you want to set the crontab file? </p>', 'Confirm crontab setup', null, null, function() { |
| 85 | $.get(routes.crontab, { 'env_vars': $('#env_vars').val() }, function() { |
| 86 | infoMessageBox('Successfully set crontab file!', 'Information'); |
| 87 | location.reload(); |
| 88 | }).fail(function(response) { |
| 89 | errorMessageBox(response.statusText); |
| 90 | }); |
| 91 | }); |
| 92 | } |
| 93 | |
| 94 | function getCrontab() { |
| 95 | messageBox( |
nothing calls this directly
no test coverage detected