Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
PerfectSlayer committed May 10, 2015
1 parent e46f875 commit 51974b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -880,7 +880,7 @@ var handleError = function (json, call) {
return;
}
// Repeat call with delay
Timers.setTimeout(function() {
Timers.setTimeout(function () {
call();
}, 500);
});
Expand Down

0 comments on commit 51974b3

Please sign in to comment.