META-INF.resources.webjars.camunda.app.admin.custom.logout.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-bpm-identity-keycloak-examples-sso-kubernetes Show documentation
Show all versions of camunda-bpm-identity-keycloak-examples-sso-kubernetes Show documentation
Showcase for using Camunda Keycloak Identity Provider
let observer = new MutationObserver(() => {
// find the logout button
const logoutButton = document.querySelectorAll(".logout > a")[0];
// once the button is present replace it with new functionality
if (logoutButton) {
var parent = logoutButton.parentElement
parent.removeChild(logoutButton)
var newLogout = document.createElement('a');
newLogout.setAttribute('className', 'ng-binding')
newLogout.innerText = logoutButton.innerText.replaceAll('\n', '');
newLogout.setAttribute('href', 'logout'); // call server side logout handler
parent.appendChild(newLogout)
observer.disconnect();
}
});
observer.observe(document.body, {
childList: true,
subtree: true,
attributes: false,
characterData: false
});