Skip to content

Commit

Permalink
Fix: NULL -> null
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Dec 25, 2021
1 parent b9501cd commit 74ae356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/utility.js
Original file line number Diff line number Diff line change
Expand Up @@ -1381,7 +1381,7 @@ function getParent(el, nodeName) {
while (target.nodeName !== nodeName) {
i++;
if (i > 10) {
return NULL;
return null;
}
target = target.parentNode;
}
Expand Down

0 comments on commit 74ae356

Please sign in to comment.