diff options
| -rw-r--r-- | pages/options.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/options.coffee b/pages/options.coffee index 416b3ea7..c3fa82fb 100644 --- a/pages/options.coffee +++ b/pages/options.coffee @@ -335,7 +335,7 @@ DomUtils?.documentReady -> backup[option.field] = option.readValueFromElement() # Create the blob in the background page so it isn't garbage collected when the page closes in FF. bgWin = chrome.extension.getBackgroundPage() - blob = new bgWin.Blob [ JSON.stringify backup ] + blob = new bgWin.Blob [ JSON.stringify backup, null, 2 ] url = bgWin.URL.createObjectURL blob a = $ "backupLink" a.href = url |
