(db_name)
| 208 | } |
| 209 | |
| 210 | function delete_backup(db_name) { |
| 211 | messageBox('<p> Do you want to delete this backup? </p>', 'Confirm delete', null, null, function() { |
| 212 | $.get(routes.delete_backup, {db: db_name}, function() { |
| 213 | location = routes.root; |
| 214 | }); |
| 215 | }); |
| 216 | } |
| 217 | |
| 218 | function restore_backup(db_name) { |
| 219 | messageBox('<p> Do you want to restore this backup? </p>', 'Confirm restore', null, null, function() { |
nothing calls this directly
no test coverage detected