Skip to content
Snippets Groups Projects
Commit 0f729a75 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

click adds term to filter (before: replace)

parent 2fbbdd91
No related branches found
No related tags found
1 merge request!45Update links:
......@@ -109,7 +109,9 @@ function filter(oLink) {
oTable=document.getElementsByTagName('table')[0];
oSearchfield=document.getElementsByClassName('searchfield')[0];
if(oLink.innerHTML){
oSearchfield.value = oLink.innerHTML;
oSearchfield.value = oSearchfield.value
? oSearchfield.value + ' ' + oLink.innerHTML
: oLink.innerHTML;
} else {
oSearchfield.value = oLink;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment