Merge branch 'worktree-api-urls' into macros
This commit is contained in:
@@ -1620,7 +1620,7 @@ PLATFORM_DOM_JS = """
|
||||
}
|
||||
|
||||
function domAppend(parent, child) {
|
||||
if (parent && child) parent.appendChild(child);
|
||||
if (parent && child && !child._spread) parent.appendChild(child);
|
||||
}
|
||||
|
||||
function domPrepend(parent, child) {
|
||||
@@ -1692,7 +1692,7 @@ PLATFORM_DOM_JS = """
|
||||
}
|
||||
|
||||
function domInsertAfter(ref, node) {
|
||||
if (ref && ref.parentNode && node) {
|
||||
if (ref && ref.parentNode && node && !node._spread) {
|
||||
ref.parentNode.insertBefore(node, ref.nextSibling);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user