Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
ce35c4f2
Commit
ce35c4f2
authored
Jan 02, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #71 from t-ashula/jqueryxss
add css-escape to avoid jquery based xss
parents
8de63344
7fea8209
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
navtree.js
src/navtree.js
+3
-3
No files found.
src/navtree.js
View file @
ce35c4f2
...
...
@@ -276,7 +276,7 @@ function highlightAnchor()
var
anchor
=
$
(
aname
);
if
(
anchor
.
parent
().
attr
(
'class'
)
==
'memItemLeft'
){
var
rows
=
$
(
'.memberdecls tr[class$="'
+
window
.
location
.
hash
.
substring
(
1
)
+
'"]'
);
window
.
location
.
hash
.
substring
(
1
)
.
replace
(
/</g
,
'
\\
3c '
)
+
'"]'
);
glowEffect
(
rows
.
children
(),
300
);
// member without details
}
else
if
(
anchor
.
parents
().
slice
(
2
).
prop
(
'tagName'
)
==
'TR'
)
{
glowEffect
(
anchor
.
parents
(
'div.memitem'
),
1000
);
// enum value
...
...
@@ -295,7 +295,7 @@ function selectAndHighlight(hash,n)
var
a
;
if
(
hash
)
{
var
link
=
stripPath
(
$
(
location
).
attr
(
'pathname'
))
+
':'
+
hash
.
substring
(
1
);
a
=
$
(
'.item a[class$="'
+
link
+
'"]'
);
a
=
$
(
'.item a[class$="'
+
link
.
replace
(
/</g
,
'
\\
3c '
)
+
'"]'
);
}
if
(
a
&&
a
.
length
)
{
a
.
parent
().
parent
().
addClass
(
'selected'
);
...
...
@@ -496,7 +496,7 @@ function initNavTree(toroot,relpath)
if
(
$
(
location
).
attr
(
'hash'
)){
var
clslink
=
stripPath
(
$
(
location
).
attr
(
'pathname'
))
+
':'
+
$
(
location
).
attr
(
'hash'
).
substring
(
1
);
a
=
$
(
'.item a[class$="'
+
clslink
+
'"]'
);
a
=
$
(
'.item a[class$="'
+
clslink
.
replace
(
/</g
,
'
\\
3c '
)
+
'"]'
);
}
if
(
a
==
null
||
!
$
(
a
).
parent
().
parent
().
hasClass
(
'selected'
)){
$
(
'.item'
).
removeClass
(
'selected'
);
...
...
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