From 51974b321bd5ad693a1637a58140d0428b5dd7e4 Mon Sep 17 00:00:00 2001 From: PerfectSlayer Date: Sun, 10 May 2015 20:20:21 +0200 Subject: [PATCH] Fix typos --- lib/main.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/main.js b/lib/main.js index cb77c85..3a04468 100644 --- a/lib/main.js +++ b/lib/main.js @@ -442,7 +442,7 @@ var windowTrackerDelegate = { } // Open browser panel Timers.setTimeout(function () { - browserPanel.open(downloadPath, function(path, remember) { + browserPanel.open(downloadPath, function (path, remember) { // Confirm the location confirmedPath = true; // Check download path @@ -712,7 +712,7 @@ locationsPanel.port.on("edit", function (domain) { if (typeof path === 'undefined') return; // Open browser panel - browserPanel.open(path, function(selectedPath, remember) { + browserPanel.open(path, function (selectedPath, remember) { // Update the path for the domain LocationManager.save(domain, selectedPath, remember); // Re-open the location panel @@ -759,7 +759,7 @@ Tabs.on("ready", function (tab) { // Add worker message listeners worker.port.on("browse", function () { // Check download path - browserPanel.open(downloadPath, function() { + browserPanel.open(downloadPath, function () { // Decode path name var downloadPathName = LocationManager.decodePath(downloadPath); // Update magnet pages @@ -880,7 +880,7 @@ var handleError = function (json, call) { return; } // Repeat call with delay - Timers.setTimeout(function() { + Timers.setTimeout(function () { call(); }, 500); });