ulrich
2019-12-13 c9d6c1ac597b7a9747fcf762bfb2007582e14957
jslib/app-menu/app-menu.js
@@ -97,15 +97,15 @@
  };
  this.app_menu_klick_herunter = function() {
    self.app_menu_laden($(this).attr('data-verweis'), 'herunter');
    self.app_menu_laden(this.getAttribute('data-verweis'), 'herunter');
  };
  this.app_menu_klick_herauf = function() {
    self.app_menu_laden($(this).attr('data-verweis'), 'herauf');
    self.app_menu_laden(this.getAttribute('data-verweis'), 'herauf');
  };
  this.app_menu_ausfuehren = function() {
    var functionName = $(this).attr('data-verweis');
    var functionName = this.getAttribute('data-verweis');
    eval(functionName + "(this)");
  };