forgot that semi‐colon :/

This commit is contained in:
jesus2099 2015-09-26 19:00:59 +02:00
parent 37e8b8b647
commit 9785dedc46

View file

@ -343,7 +343,7 @@ function getAncestor(obj, searchedTag) {
if (obj.parentNode.nodeName == searchedTag.toUpperCase()) {
return obj.parentNode;
} else {
getAncestor(obj.parentNode, searchedTag)
getAncestor(obj.parentNode, searchedTag);
}
} else {
return null;