We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bottom of the README should say:
const data = document.querySelector(".institution_list").getAttribute("data-institutions"); institutionSelector(JSON.parse(data), "institution-modal-content", config); const container = document.querySelector(".institution-container"); const observer = new MutationObserver((event) => { const institutions = Array.from(document.querySelectorAll(".ob-list-institution > a")); console.log(institutions) institutions.forEach((institution) => { institution.addEventListener("click", (e) => { e.preventDefault(); const aspspId = e.currentTarget.getAttribute("data-institution"); window.location.href = `/agreements/${aspspId}`; }) }) }); const conf = { childList: true }; observer.observe(container, conf);
Also please make a react template!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bottom of the README should say:
Also please make a react template!
The text was updated successfully, but these errors were encountered: