Skip to content
Snippets Groups Projects
Commit a06fb27b authored by Tim Steiner's avatar Tim Steiner
Browse files

Fix the url for the collapsed arrow icon.

parent 1f3016bb
Branches
Tags
No related merge requests found
...@@ -29,10 +29,10 @@ function handleOnLoad(theBaseUrl) ...@@ -29,10 +29,10 @@ function handleOnLoad(theBaseUrl)
if (content.style.display == 'none') { if (content.style.display == 'none') {
content.style.display = 'block'; content.style.display = 'block';
toggleArrow.src = '/images/arrow1.png'; toggleArrow.src = baseUrl + '/images/index/arrow1.png';
} else { } else {
content.style.display = 'none'; content.style.display = 'none';
toggleArrow.src = '/images/arrow2.png'; toggleArrow.src = baseUrl + '/images/index/arrow2.png';
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment