summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorathenian200 <athenian200@outlook.com>2020-03-06 10:46:10 -0600
committerathenian200 <athenian200@outlook.com>2020-03-06 10:46:10 -0600
commit3e4e590e6a63ab9175fc21551b102d5302de0649 (patch)
tree84ed8c8fe10112d63a4edfa771bc2859c4628f09
parentdca734382f8718ba7d7ef17bbfb47e4410e706f3 (diff)
downloadbasilisk-3e4e590e6a63ab9175fc21551b102d5302de0649.tar.gz
Issue MoonchildProductions/UXP#516 - Remove named function syntax from basilisk/components/shell.
-rw-r--r--basilisk/components/shell/nsSetDefaultBrowser.js2
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);
}