diff options
author | athenian200 <athenian200@outlook.com> | 2020-03-06 10:46:10 -0600 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2020-03-06 10:46:10 -0600 |
commit | 3e4e590e6a63ab9175fc21551b102d5302de0649 (patch) | |
tree | 84ed8c8fe10112d63a4edfa771bc2859c4628f09 | |
parent | dca734382f8718ba7d7ef17bbfb47e4410e706f3 (diff) | |
download | basilisk-3e4e590e6a63ab9175fc21551b102d5302de0649.tar.gz |
Issue MoonchildProductions/UXP#516 - Remove named function syntax from basilisk/components/shell.
-rw-r--r-- | basilisk/components/shell/nsSetDefaultBrowser.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basilisk/components/shell/nsSetDefaultBrowser.js b/basilisk/components/shell/nsSetDefaultBrowser.js index c7a78c5..853d8d8 100644 --- a/basilisk/components/shell/nsSetDefaultBrowser.js +++ b/basilisk/components/shell/nsSetDefaultBrowser.js @@ -15,7 +15,7 @@ Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); function nsSetDefaultBrowser() {} nsSetDefaultBrowser.prototype = { - handle: function nsSetDefault_handle(aCmdline) { + handle: function(aCmdline) { if (aCmdline.handleFlag("setDefaultBrowser", false)) { ShellService.setDefaultBrowser(true, true); } |