Skip to content
Snippets Groups Projects
Commit 479d468e authored by Elisa Giglio's avatar Elisa Giglio
Browse files

webapp

parent e67ae003
No related branches found
No related tags found
No related merge requests found
......@@ -40,10 +40,11 @@ class App {
}
});
}
tr.querySelector('th > h4 > a').addEventListener('click', (event) => {
const a = tr.querySelector('th > h4 > a');
a.addEventListener('click', (event) => {
event.preventDefault();
sessionStorage.setItem('domain', domainObject.nome);
window.location.href = '/secured/home/';
window.location.href = a.href;
});
}
......
'use strict';
function createRowDomain(domain) {
console.log(domain);
return `
<th scope="row">
<h4 class="d-flex justify-content-center mt-2">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment