From 27e9fa59c5aec11f9ac1803d5852ad69eb82917a Mon Sep 17 00:00:00 2001 From: thoughtsunificator Date: Thu, 14 Nov 2024 23:11:26 +0000 Subject: [PATCH] Update gh-pages to output generated at 37091e8 --- Binding.html | 2 +- Core.html | 2 +- EventListener.html | 2 +- Listener.html | 2 +- Model.html | 2 +- Observable.html | 2 +- binding.js.html | 2 +- core.js.html | 15 +++++++++++---- event-listener.js.html | 2 +- index.html | 2 +- listener.js.html | 2 +- model.js.html | 2 +- observable.js.html | 2 +- 13 files changed, 23 insertions(+), 16 deletions(-) diff --git a/Binding.html b/Binding.html index 5d07916..e751e55 100644 --- a/Binding.html +++ b/Binding.html @@ -2068,7 +2068,7 @@

(async, abstract)
- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/Core.html b/Core.html index 18199a4..78b07eb 100644 --- a/Core.html +++ b/Core.html @@ -825,7 +825,7 @@
Returns:

- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/EventListener.html b/EventListener.html index 0a433ca..234da32 100644 --- a/EventListener.html +++ b/EventListener.html @@ -302,7 +302,7 @@
Type:

- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/Listener.html b/Listener.html index 7a76e67..4d95d32 100644 --- a/Listener.html +++ b/Listener.html @@ -504,7 +504,7 @@

remove
- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/Model.html b/Model.html index bf3911d..b0971c2 100644 --- a/Model.html +++ b/Model.html @@ -530,7 +530,7 @@
Type:

- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/Observable.html b/Observable.html index 8240bfa..abdd59a 100644 --- a/Observable.html +++ b/Observable.html @@ -717,7 +717,7 @@
Parameters:

- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/binding.js.html b/binding.js.html index 4722e41..d0f2906 100644 --- a/binding.js.html +++ b/binding.js.html @@ -258,7 +258,7 @@

binding.js


- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/core.js.html b/core.js.html index 46a3e07..95521d2 100644 --- a/core.js.html +++ b/core.js.html @@ -108,12 +108,19 @@

core.js

node.fragmentChildren = [...node.children] } const isPlaceholderDocumentFragment = parentNode.nodeType === node.ownerDocument.defaultView.Node.COMMENT_NODE - if(isPlaceholderDocumentFragment || method === Core.METHOD.REPLACE_NODE) { - parentNode.replaceWith(node) + if(isPlaceholderDocumentFragment) { + if(parentNode.placeholderNode) { + parentNode.placeholderNode.after(node) + } else { + parentNode.replaceWith(node) + } + parentNode.placeholderNode = node } else if (method === Core.METHOD.APPEND_CHILD) { parentNode.appendChild(node) } else if (method === Core.METHOD.INSERT_BEFORE) { parentNode.parentNode.insertBefore(node, parentNode) + } else if(method === Core.METHOD.REPLACE_NODE) { + parentNode.replaceWith(node) } else if (method === Core.METHOD.WRAP_NODE) { node.appendChild(parentNode.cloneNode(true)) parentNode.replaceWith(node) @@ -143,7 +150,7 @@

core.js

if(children.length >= 1) { node = parentNode.ownerDocument.createDocumentFragment() } else { - node = parentNode.ownerDocument.createComment("This is a comment automatically generated by domodel. It serves as placeholder for DocumentFragment with no children.") + node = parentNode.ownerDocument.createComment("") } } Object.keys(model).filter(property => Core.PROPERTIES.includes(property) === false).forEach(function(property) { @@ -213,7 +220,7 @@

core.js


- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/event-listener.js.html b/event-listener.js.html index 9fccb16..4f98d05 100644 --- a/event-listener.js.html +++ b/event-listener.js.html @@ -82,7 +82,7 @@

event-listener.js


- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/index.html b/index.html index 8766cb8..37a58f8 100644 --- a/index.html +++ b/index.html @@ -412,7 +412,7 @@

Testing


- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/listener.js.html b/listener.js.html index c49227d..3514c72 100644 --- a/listener.js.html +++ b/listener.js.html @@ -101,7 +101,7 @@

listener.js


- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/model.js.html b/model.js.html index 88134c6..3d84298 100644 --- a/model.js.html +++ b/model.js.html @@ -103,7 +103,7 @@

model.js


- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.
diff --git a/observable.js.html b/observable.js.html index 4edb6d9..4ada63a 100644 --- a/observable.js.html +++ b/observable.js.html @@ -114,7 +114,7 @@

observable.js


- Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 20:16:35 GMT+0000 (Coordinated Universal Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Nov 14 2024 23:11:26 GMT+0000 (Coordinated Universal Time) using the docdash theme.