Projet

Général

Profil

Télécharger (376 octets) Statistiques
| Branche: | Tag: | Révision:

root / mandaye / static / js / toolbar.js @ 8585d3d5

1
function mandaye_disassociate_logout(url, account, id)
2
{
3
  var r = confirm("Etes-vous sûr de vouloir désassocier le compte " + account + " ?");
4
  if (r == true)
5
  {
6
    window.location = url + "?id=" + id;
7
  }
8
}
9

    
10
(function( $ ) {
11
    $(function() {
12
          $.get("/mandaye/toolbar", function(data) {
13
            $("body").prepend(data);
14
          });
15
    });
16
})(mjQuery);
(2-2/2)