-
Bug
-
Resolution: Fixed
-
Major
-
None
-
None
-
None
Replace all evals by something like
function executeFunctionByName(functionName, context /*, args */) { var args = Array.prototype.slice.call(arguments, 2); var namespaces = functionName.split("."); var func = namespaces.pop(); for (var i = 0; i < namespaces.length; i++) { context = context[namespaces[i]]; } return context[func].apply(context, args); }
- Bloque
-
CMS-4430 Possibility to add a converter function in the property mapping of the search tool.
- Closed
- depends on
-
RUNTIME-895 Adding general JS functions to avoid using eval
- Closed