Skip to content

Commit 8bb1162

Browse files
authored
add missing semi-colons
1 parent df6b4b9 commit 8bb1162

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

diffDOM.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,8 +730,8 @@
730730
}
731731
}
732732
if (objNode.childNodes) {
733-
childNodeArray = objNode.childNodes
734-
length = childNodeArray.length
733+
childNodeArray = objNode.childNodes;
734+
length = childNodeArray.length;
735735
for (i = 0; i < length; i++) {
736736
childNode = childNodeArray[i];
737737
node.appendChild(dobj.objToNode(childNode, insideSvg));

0 commit comments

Comments
 (0)