summaryrefslogtreecommitdiff
path: root/common/content/browser.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/content/browser.js')
-rw-r--r--common/content/browser.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/common/content/browser.js b/common/content/browser.js
index 05b8f1eb..a1ef083d 100644
--- a/common/content/browser.js
+++ b/common/content/browser.js
@@ -255,15 +255,14 @@ function Browser() //{{{
"Open one or more URLs in the current tab",
function (args)
{
- if (args.string)
- liberator.open(args.string);
- else if (args.bang)
- BrowserReloadSkipCache();
+ args = args.string;
+
+ if (args)
+ liberator.open(args);
else
- BrowserReload();
+ liberator.open("about:blank");
},
{
- bang: true,
completer: function (context) completion.url(context),
literal: 0
});