ulrich
2019-12-13 5ebc23a2e77b30c4c812b4961cdaf07e3af368fe
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)");
  };