ungleich-staticcms/assets/u/static/popper.js-1.16.0/packages/test-utils/utils/appendNewPopper.js
Nico Schottelius 16fb2bb919 import popper.js
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
2019-12-31 01:21:21 +01:00

14 lines
492 B
JavaScript

export default function appendNewPopper(id, text, container) {
const jasmineWrapper = document.getElementById('jasmineWrapper');
const popper = document.createElement('div');
popper.id = id;
popper.className = 'popper';
popper.textContent = text || 'popper';
const arrow = document.createElement('div');
arrow.className = 'popper__arrow';
arrow.setAttribute('x-arrow', '');
popper.appendChild(arrow);
(container || jasmineWrapper).appendChild(popper);
return popper;
}