diff --git a/js/backup_restore.js b/js/backup_restore.js index 764e967e..07fad3d5 100644 --- a/js/backup_restore.js +++ b/js/backup_restore.js @@ -198,7 +198,7 @@ function configuration_backup(callback) { chosenFileEntry = fileEntryWritable; // crunch the config object - var serialized_config_object = JSON.stringify(configuration); + var serialized_config_object = JSON.stringify(configuration, null, '\t'); var blob = new Blob([serialized_config_object], {type: 'text/plain'}); // first parameter for Blob needs to be an array chosenFileEntry.createWriter(function (writer) {