fixing freemind layout with import

This commit is contained in:
Pablo Luna
2011-04-16 14:18:33 +01:00
parent 776e216e50
commit 4e746833ae
29 changed files with 145 additions and 89 deletions

View File

@@ -41,20 +41,23 @@ mindplot.ShirinkConnector = function(topic)
var command = new mindplot.commands.GenericFunctionCommand(commandFunc, isShrink, [topicId]);
actionRunner.execute(command);
new Event(event).stop();
var event = new Event(event).stop();
event.preventDefault();
});
elipse.addEventListener('click', function(event)
elipse.addEventListener('mousedown', function(event)
{
// Avoid node creation ...
new Event(event).stop();
var event = new Event(event).stop();
event.preventDefault();
});
elipse.addEventListener('dblclick', function(event)
{
// Avoid node creation ...
new Event(event).stop();
event = new Event(event).stop();
event.preventDefault();
});