Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
aeec5984
Commit
aeec5984
authored
Jan 12, 2003
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 153874: Query in sidebar wasn't working
Patch by Peter Henderson (peterhenderson@usa.net) r= kiko, a= justdave
parent
83f0e234
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
quicksearch.js
quicksearch.js
+1
-1
sidebar.xul.tmpl
template/en/default/sidebar.xul.tmpl
+4
-0
No files found.
quicksearch.js
View file @
aeec5984
...
...
@@ -47,7 +47,7 @@ function do_shift(l) {
function
go_to
(
url
)
{
if
(
typeof
sidebar
!=
"undefined"
&&
sidebar
==
1
)
{
load_
relativ
e_url
(
url
);
load_
absolut
e_url
(
url
);
}
else
{
document
.
location
.
href
=
url
;
}
...
...
template/en/default/sidebar.xul.tmpl
View file @
aeec5984
...
...
@@ -39,6 +39,10 @@
// Tell QuickSearch that the source of this is the sidebar
var
sidebar
=
1
;
function
load_absolute_url
(
aAbsoluteURL
)
{
_content
.
location
=
aAbsoluteURL
;
}
function
load_relative_url
(
aRelativeURL
)
{
aRelativeURL
=
'[% Param('
urlbase
') %]'
+
aRelativeURL
;
_content
.
location
=
aRelativeURL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment