Skip to content
Snippets Groups Projects
Commit 1c4829f0 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

block-scoped

parent c81c4564
No related merge requests found
......@@ -87,8 +87,8 @@ function doTreeSearch() {
var id = htmlEncodeId(data.results[i]);
tree._open_to(id);
}
for (i = data.results.length; i--;) {
var tid = htmlEncodeId(data.results[i]);
for (var j = data.results.length; j--;) {
var tid = htmlEncodeId(data.results[j]);
$('#hierarchyTree').find('#' + tid).addClass('jstree-search');
}
changeNoResultLabel(false);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment