From 29e397ab3f528102948503900f8db0c0c32c4355 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Mon, 5 Nov 2012 00:58:00 -0300 Subject: [PATCH] Fix call to undefined value --- mindplot/src/main/javascript/StandaloneActionDispatcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindplot/src/main/javascript/StandaloneActionDispatcher.js b/mindplot/src/main/javascript/StandaloneActionDispatcher.js index 7b5df982..b25fbb62 100644 --- a/mindplot/src/main/javascript/StandaloneActionDispatcher.js +++ b/mindplot/src/main/javascript/StandaloneActionDispatcher.js @@ -83,7 +83,7 @@ mindplot.StandaloneActionDispatcher = new Class({ topic.setText(value); return result; }; - command.commandType = "changeTextToTopic"; + commandFunc.commandType = "changeTextToTopic"; var command = new mindplot.commands.GenericFunctionCommand(commandFunc, topicsIds, text); this.execute(command);