diff --git a/htdocs/js/utility.js b/htdocs/js/utility.js index 65dbce142..9d0fcfda6 100644 --- a/htdocs/js/utility.js +++ b/htdocs/js/utility.js @@ -1381,7 +1381,7 @@ function getParent(el, nodeName) { while (target.nodeName !== nodeName) { i++; if (i > 10) { - return NULL; + return null; } target = target.parentNode; }