mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-04 16:24:22 +01:00
21 lines
431 B
JavaScript
21 lines
431 B
JavaScript
|
const fixtureId = 'fixture'
|
||
|
|
||
|
export const getFixture = () => {
|
||
|
let fixtureEl = document.getElementById(fixtureId)
|
||
|
|
||
|
if (!fixtureEl) {
|
||
|
fixtureEl = document.createElement('div')
|
||
|
fixtureEl.setAttribute('id', fixtureId)
|
||
|
fixtureEl.style.display = 'none'
|
||
|
document.body.appendChild(fixtureEl)
|
||
|
}
|
||
|
|
||
|
return fixtureEl
|
||
|
}
|
||
|
|
||
|
export const clearFixture = () => {
|
||
|
const fixtureEl = getFixture()
|
||
|
|
||
|
fixtureEl.innerHTML = ''
|
||
|
}
|