Skip to content
Snippets Groups Projects
Commit 485544f4 authored by Arkerthan's avatar Arkerthan
Browse files

simplify App.UI.DOM.combineNodes

parent ed20d1d4
No related branches found
No related tags found
No related merge requests found
...@@ -172,15 +172,13 @@ App.Utils.passageElement = function(passage) { ...@@ -172,15 +172,13 @@ App.Utils.passageElement = function(passage) {
}; };
/** /**
* @param {Node[]} nodes * @param {Node|string} content
* @returns {DocumentFragment} * @returns {DocumentFragment}
*/ */
App.UI.DOM.combineNodes = function(...nodes) { App.UI.DOM.combineNodes = function(...content) {
let res = document.createDocumentFragment(); let fragment = document.createDocumentFragment();
for (const n of nodes) { fragment.append(...content);
res.appendChild(n); return fragment;
}
return res;
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment