Erik Perrone 6 years ago
parent cc6b5c73c9
commit 732b90ad8b

@ -878,10 +878,10 @@ filterAlgorithmsByAnnotation = function() {
var named = $("#algorithm-params-div input[type=checkbox]")[i].getAttribute("named");
var annList = algIndexedArray[named].annotations;
if(annList.indexOf(annotation) >= 0) {
$($("#algorithm-params-div input[type=checkbox]")[i]).attr("checked", "")
$($("#algorithm-params-div input[type=checkbox]")[i]).prop("checked", true);
}
else {
$($("#algorithm-params-div input[type=checkbox]")[i]).removeAttr("checked")
$($("#algorithm-params-div input[type=checkbox]")[i]).prop("checked", false);
}
}
}

Loading…
Cancel
Save