ulrich
2020-05-19 58aa3b03b63bda8496a953a936ef847a611a52c9
web/profil/app.js
File was renamed from web/profil2/app.js
@@ -3,6 +3,7 @@
  this.cache = {}; // mustache template cache
  this.init = function () {
    document.querySelector('#top-logout-btn').addEventListener('click', self.logout);
    var dlg = document.querySelector(".dialog");
    dlg.style.flexBasis = '0em';
    document.querySelector('.west').style.flexBasis = '0em';
@@ -64,6 +65,15 @@
    });
  };
  this.logout = function() {
    var m = '?c=de.uhilger.um.pub.SessionManager&m=expireSession';
    var u = '../pub' + m;
    self.http_get(u, function (resp) {
      //$('#userMenu').text('nicht angemeldet');
      window.location.href = '../logout.jsp';
    });
  };
  /* -------- ajax helper functions ----------- */
  
  this.http_get = function(u, cb)  {