- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
19 lines
409 B
JavaScript
19 lines
409 B
JavaScript
/**
|
|
* Insert a given element as the first child of a parent element.
|
|
*
|
|
* @param node the element to prepend
|
|
* @param parent the parent element
|
|
*/
|
|
export default function prepend(node, parent) {
|
|
if (node && parent) {
|
|
if (parent.firstElementChild) {
|
|
parent.insertBefore(node, parent.firstElementChild);
|
|
} else {
|
|
parent.appendChild(node);
|
|
}
|
|
|
|
return node;
|
|
}
|
|
|
|
return null;
|
|
} |