diff options
| -rw-r--r-- | pages/options.coffee | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pages/options.coffee b/pages/options.coffee index 83c96339..65838203 100644 --- a/pages/options.coffee +++ b/pages/options.coffee @@ -340,9 +340,7 @@ DomUtils?.documentReady -> # 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, null, 2 ] - url = bgWin.URL.createObjectURL blob - a = $ "backupLink" - a.href = url + $("backupLink").href = bgWin.URL.createObjectURL blob $("backupLink").addEventListener "mousedown", populateBackupLinkUrl, true |
