mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-09 00:43:23 +01:00
WISE-225 fixed
This commit is contained in:
parent
3a6a810108
commit
0ffcbe39b7
@ -106,7 +106,7 @@ mindplot.ControlPoint = new Class({
|
|||||||
this._workspace.getScreenManager().addEvent('mouseup', this._mouseUpFunction);
|
this._workspace.getScreenManager().addEvent('mouseup', this._mouseUpFunction);
|
||||||
}
|
}
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
event.stop();
|
event.stopPropagation();
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -143,7 +143,7 @@ mindplot.ControlPoint = new Class({
|
|||||||
|
|
||||||
_mouseClick : function(event) {
|
_mouseClick : function(event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
event.stop();
|
event.stopPropagation();
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -325,6 +325,6 @@ mindplot.Relationship = new Class({
|
|||||||
|
|
||||||
fireEvent:function (type, event) {
|
fireEvent:function (type, event) {
|
||||||
var elem = this._line2d;
|
var elem = this._line2d;
|
||||||
elem.fireEvent(type, event);
|
elem.trigger(type, event);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -23,6 +23,7 @@ mindplot.RelationshipPivot = new Class({
|
|||||||
this._workspace = workspace;
|
this._workspace = workspace;
|
||||||
this._designer = designer;
|
this._designer = designer;
|
||||||
|
|
||||||
|
//FIXME: the aim of the migration is remove .bind mootools method, please remove these!
|
||||||
this._mouseMoveEvent = this._mouseMove.bind(this);
|
this._mouseMoveEvent = this._mouseMove.bind(this);
|
||||||
this._onClickEvent = this._cleanOnMouseClick.bind(this);
|
this._onClickEvent = this._cleanOnMouseClick.bind(this);
|
||||||
this._onTopicClick = this._connectOnFocus.bind(this);
|
this._onTopicClick = this._connectOnFocus.bind(this);
|
||||||
@ -139,7 +140,7 @@ mindplot.RelationshipPivot = new Class({
|
|||||||
return mindplot.util.Shape.calculateRelationShipPointCoordinates(this._sourceTopic, spoint);
|
return mindplot.util.Shape.calculateRelationShipPointCoordinates(this._sourceTopic, spoint);
|
||||||
},
|
},
|
||||||
|
|
||||||
_connectOnFocus:function (targetTopic) {
|
_connectOnFocus:function (event, targetTopic) {
|
||||||
var sourceTopic = this._sourceTopic;
|
var sourceTopic = this._sourceTopic;
|
||||||
var mindmap = this._designer.getMindmap();
|
var mindmap = this._designer.getMindmap();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user