Files
adlist_mikrotik/static/js/error.js
Mateusz Gruszczyński bc45c91d92 refactor ciagl dalszy
2025-08-29 10:46:50 +02:00

26 lines
931 B
JavaScript

(function () {
const t = localStorage.getItem('theme') || 'dark';
document.documentElement.setAttribute('data-theme', t);
// prosty "try again"
document.querySelector('[data-action="try-again"]')?.addEventListener('click', () => {
location.reload();
});
// kopiowanie logs
document.querySelector('[data-action="copy-text"]')?.addEventListener('click', (e) => {
const sel = e.currentTarget.getAttribute('data-target');
const el = sel && document.querySelector(sel);
if (!el) return;
const txt = el.textContent || '';
navigator.clipboard.writeText(txt).then(() => {
const toast = document.getElementById('toast');
if (toast) {
toast.textContent = 'Copied!';
toast.classList.add('show');
setTimeout(() => toast.classList.remove('show'), 1200);
}
});
});
})();