mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-01-15 19:23:58 +01:00
Solved bug
This commit is contained in:
parent
2a3491b98b
commit
3c240fc16b
@ -74,8 +74,9 @@ function openDynamicPopup(subitem) {
|
|||||||
<span>
|
<span>
|
||||||
<i class="${alt.icon.class}"></i> ${alt.name}
|
<i class="${alt.icon.class}"></i> ${alt.name}
|
||||||
</span>
|
</span>
|
||||||
<button class="btn btn-outline-secondary btn-sm" onclick='openDynamicPopup(${JSON.stringify(alt)})'>Open</button>
|
<button class="btn btn-outline-secondary btn-sm">Open</button>
|
||||||
`;
|
`;
|
||||||
|
listItem.querySelector('button').addEventListener('click', () => openDynamicPopup(alt));
|
||||||
alternativesList.appendChild(listItem);
|
alternativesList.appendChild(listItem);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@ -83,12 +84,13 @@ function openDynamicPopup(subitem) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Kopierfunktion für den Identifier
|
// Kopierfunktion für den Identifier
|
||||||
document.getElementById('dynamicCopyButton').addEventListener('click', function () {
|
const copyButton = document.getElementById('dynamicCopyButton');
|
||||||
|
copyButton.onclick = () => {
|
||||||
modalContent.select();
|
modalContent.select();
|
||||||
navigator.clipboard.writeText(modalContent.value).then(() => {
|
navigator.clipboard.writeText(modalContent.value).then(() => {
|
||||||
alert('Identifier copied to clipboard!');
|
alert('Identifier copied to clipboard!');
|
||||||
});
|
});
|
||||||
});
|
};
|
||||||
|
|
||||||
// Modal anzeigen
|
// Modal anzeigen
|
||||||
const modal = new bootstrap.Modal(document.getElementById('dynamicModal'));
|
const modal = new bootstrap.Modal(document.getElementById('dynamicModal'));
|
||||||
|
Loading…
Reference in New Issue
Block a user