From ca6201166164c9b8d07a7f5ea74d7a93c07ca5c6 Mon Sep 17 00:00:00 2001 From: Alexander Schlemmer <alexander@mail-schlemmer.de> Date: Thu, 16 Sep 2021 14:24:56 +0200 Subject: [PATCH] FIX: inexistent dependency removed --- src/core/js/ext_data_analysis.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/js/ext_data_analysis.js b/src/core/js/ext_data_analysis.js index 3bdb46b6..6dafcfa4 100644 --- a/src/core/js/ext_data_analysis.js +++ b/src/core/js/ext_data_analysis.js @@ -35,7 +35,7 @@ * @version 0.1 * */ -var ext_data_analysis = function (somelibrary) { +var ext_data_analysis = function () { var init = function (toolbox) { /* initialization of the module */ @@ -85,7 +85,7 @@ var ext_data_analysis = function (somelibrary) { init: init, }; //pass the dependencies as arguments here as well -}(somelibrary); +}(); // this will be replaced by require.js in the future. $(document).ready(function() { -- GitLab