bug 97123 part 2; patch by jrgm@netscape.com r=biesi sr=bzbarsky

fix regression - clicking on entries in autocomplete dropdown didn't work anymore


git-svn-id: svn://10.0.0.236/trunk@211211 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cbiesinger%web.de
2006-09-14 06:05:07 +00:00
parent c23c3f0613
commit 4e8e93232f

View File

@@ -1106,8 +1106,8 @@ function BrowserLoadURL(aTriggeringEvent)
url = getShortcutOrURI(url);
// Accept both Control and Meta (=Command) as New-Window-Modifiers
if (aTriggeringEvent &&
('ctrlKey' in aTriggeringEvent && aTriggeringEvent.ctrlKey) ||
('metaKey' in aTriggeringEvent && aTriggeringEvent.metaKey)) {
(('ctrlKey' in aTriggeringEvent && aTriggeringEvent.ctrlKey) ||
('metaKey' in aTriggeringEvent && aTriggeringEvent.metaKey))) {
// Check if user requests Tabs instead of windows
var openTab = false;
try {