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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
44264182
Commit
44264182
authored
Nov 11, 2002
by
timeless%mozdev.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 178178 Sidebar name should not be hardcoded to "Bugzilla"
r=bbaetz a=justdave
parent
4185f96c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
index.html.tmpl
template/en/default/index.html.tmpl
+5
-2
No files found.
template/en/default/index.html.tmpl
View file @
44264182
...
@@ -34,7 +34,10 @@
...
@@ -34,7 +34,10 @@
function
addSidebar
()
{
function
addSidebar
()
{
if
((
typeof
window
.
sidebar
==
"object"
)
&&
(
typeof
window
.
sidebar
.
addPanel
==
"function"
))
if
((
typeof
window
.
sidebar
==
"object"
)
&&
(
typeof
window
.
sidebar
.
addPanel
==
"function"
))
{
{
window
.
sidebar
.
addPanel
(
"Bugzilla"
,
"[% Param('urlbase') %]sidebar.cgi"
,
""
);
var
sidebarname
=
window
.
location
.
host
;
if
(
!
/bug/i
.
test
(
sidebarname
))
sidebarname
=
"Bugzilla "
+
sidebarname
;
window
.
sidebar
.
addPanel
(
sidebarname
,
"[% Param('urlbase') %]sidebar.cgi"
,
""
);
}
}
else
else
{
{
...
@@ -42,7 +45,7 @@ function addSidebar() {
...
@@ -42,7 +45,7 @@ function addSidebar() {
if
(
rv
)
if
(
rv
)
document
.
location
.
href
=
"http://home.netscape.com/download/index.html"
;
document
.
location
.
href
=
"http://home.netscape.com/download/index.html"
;
}
}
}
}
//-->
//-->
</script>
</script>
...
...
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