This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
mandaye-cud/mandaye_cud/static/js/toolbar.js

21 lines
495 B
JavaScript

function mandaye_disassociate_logout(url, account, id)
{
var r = confirm("Etes-vous sûr de vouloir délier le compte " + account + " ?");
if (r == true)
{
window.location.href = url + "?id=" + id;
}
}
(function( $ ) {
$(function() {
$.get("/mandaye/toolbar", function(data) {
$("body").prepend(data);
});
$("#logout_link").off('click').on("click", function() {
window.location = "/studio/locallogout?next_url=/studio/accueil";
});
});
})(mjQuery);