No bug - Switch default URL handling on links and commands/menus to goto-url-newtab.

rs=gijs
ChatZilla only.


git-svn-id: svn://10.0.0.236/trunk@255856 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
silver%warwickcompsoc.co.uk
2009-01-20 00:52:53 +00:00
parent 500feb3429
commit 954f8c8d39
2 changed files with 4 additions and 4 deletions

View File

@@ -218,8 +218,8 @@ function initCommands()
["part", "leave", CMD_CONSOLE],
["raw", "quote", CMD_CONSOLE],
// Shortcuts to useful URLs:
["faq", "goto-url faq", 0],
["homepage", "goto-url homepage", 0],
["faq", "goto-url-newtab faq", 0],
["homepage", "goto-url-newtab homepage", 0],
// Used to display a nickname in the menu only.
["label-user", "echo", 0],
["label-user-multi", "echo", 0],

View File

@@ -86,7 +86,7 @@ function initPrefs()
var logDefault = client.prefManager.logPath.clone();
logDefault.append(escapeFileName("client.log"));
var gotos = ["goto-url", "goto-url-newwin",
var gotos = ["goto-url-newtab", "goto-url-newwin",
"goto-url-newtab", "goto-url-newtab"];
if (client.host == "XULRunner")
{
@@ -96,7 +96,7 @@ function initPrefs()
else if (client.host == "Songbird")
{
// Songbird has a browser, but only supports a single browser window
gotos = ["goto-url", "goto-url-newtab",
gotos = ["goto-url-newtab", "goto-url-newtab",
"goto-url-newtab", "goto-url-newtab"];
}