11 lines
321 B
JavaScript
11 lines
321 B
JavaScript
|
export default function appendNewRef(id, text, container) {
|
||
|
const jasmineWrapper = document.getElementById('jasmineWrapper');
|
||
|
|
||
|
const ref = document.createElement('div');
|
||
|
ref.id = id;
|
||
|
ref.className = 'ref';
|
||
|
ref.textContent = text || 'reference';
|
||
|
(container || jasmineWrapper).appendChild(ref);
|
||
|
return ref;
|
||
|
}
|