File manager - Edit - /home/verseaumee/blueversion/wp-content/plugins/give/src/Views/Form/Templates/Classic/resources/js/not-jquery.js
Back
/** * Collect all siblings until a selector. * * @param {Node} node * @param {string} selector * * @return {Node[]} */ export function nextUntil(node, selector) { const siblings = []; const sibling = node.nextElementSibling; while (sibling) { if (sibling.matches(selector)) break; siblings.push(sibling); sibling = sibling.nextElementSibling; } return siblings; } /** * The missing after version of insertBefore. * * @param {Node} newNode * @param {Node} referenceNode */ export function insertAfter(newNode, referenceNode) { referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); } /** * @param {Node} node */ export function removeNode(nodeToRemove) { nodeToRemove?.parentNode.removeChild(nodeToRemove); } /** * Creates a DOM Node from an HTML string. * * @param {string} htmlString * @returns {Node} */ export function nodeFromString(htmlString) { const temp = document.createElement('template'); htmlString.trim(); temp.innerHTML = htmlString; return temp.content.firstChild; } /** * Execute a function when the DOM is fully loaded. * * @param {function} fn */ export const domIsReady = (fn) => document.readyState !== 'loading' ? window.setTimeout(fn, 0) : document.addEventListener('DOMContentLoaded', fn); /** * Convert pixels to rem. * * @param {string|number} pixelValue * @returns {string} The pixel value in rem as a DOM string. */ export function pixelsToRem(pixelValue) { const {fontSize: rootFontSize} = window.getComputedStyle(document.documentElement); // Using parseInt here is an assumption that no one is overriding our root font-size. return `${Number.parseFloat(pixelValue) / Number.parseFloat(rootFontSize)}rem`; } /** * Convert pixels to em. * * @param {string|number} pixelValue * @param {Element} element * @returns {string} The pixel value in rem as a DOM string. */ export function pixelsToEm(pixelValue, element) { const {fontSize} = window.getComputedStyle(element); return `${Number.parseFloat(pixelValue) / Number.parseFloat(fontSize)}em`; } /** * Measure some text. * * @param {string} text * @param {string} textProp - defaults to the node’s textContent * @returns {string} */ export function measureText(node, textProp = 'textContent') { const context = document.createElement('canvas').getContext('2d'); const {fontWeight, fontSize, fontFamily} = window.getComputedStyle(node); context.font = `${fontWeight} ${fontSize} ${fontFamily}`; return context.measureText(node[textProp]).width; }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings