Reported issue during the edition. The node on focus seems not to be always available.

This commit is contained in:
Paulo Gustavo Veiga 2012-08-28 01:02:00 -03:00
parent ed71bbc775
commit 1555560415

View File

@ -684,7 +684,6 @@ mindplot.Designer = new Class({
dmodel.addRelationship(result); dmodel.addRelationship(result);
return result; return result;
}, },
@ -827,13 +826,17 @@ mindplot.Designer = new Class({
addLink:function () { addLink:function () {
var model = this.getModel(); var model = this.getModel();
var topic = model.selectedTopic(); var topic = model.selectedTopic();
topic.showLinkEditor(); if (topic) {
topic.showLinkEditor();
}
}, },
addNote:function () { addNote:function () {
var model = this.getModel(); var model = this.getModel();
var topic = model.selectedTopic(); var topic = model.selectedTopic();
topic.showNoteEditor(); if (topic) {
topic.showNoteEditor();
}
}, },
goToNode:function (node) { goToNode:function (node) {