From 5ebc23a2e77b30c4c812b4961cdaf07e3af368fe Mon Sep 17 00:00:00 2001 From: ulrich <undisclosed> Date: Fri, 13 Dec 2019 18:55:59 +0000 Subject: [PATCH] Verwendung und damit die Abhaengigkeit von jQuery wurde entfernt --- jslib/app-menu/app-menu.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jslib/app-menu/app-menu.js b/jslib/app-menu/app-menu.js index 62c4760..49ffa6a 100644 --- a/jslib/app-menu/app-menu.js +++ b/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)"); }; -- Gitblit v1.9.3