diff --git a/mindplot/src/main/javascript/Designer.js b/mindplot/src/main/javascript/Designer.js index a33320d6..1bb21189 100644 --- a/mindplot/src/main/javascript/Designer.js +++ b/mindplot/src/main/javascript/Designer.js @@ -27,7 +27,7 @@ mindplot.Designer = new Class({ // Dispatcher manager ... var commandContext = new mindplot.CommandContext(this); - if (options.collab == 'standalone') { + if (!$defined(options.collab) || options.collab == 'standalone') { this._actionDispatcher = new mindplot.StandaloneActionDispatcher(commandContext); } else { this._actionDispatcher = new mindplot.BrixActionDispatcher(commandContext); diff --git a/wise-editor/src/main/webapp/html/container.html b/wise-editor/src/main/webapp/html/container.html index 2263761a..b2dd68e0 100644 --- a/wise-editor/src/main/webapp/html/container.html +++ b/wise-editor/src/main/webapp/html/container.html @@ -14,10 +14,8 @@