Fixed the enterprise feature of add relation between nodes in the new networkmap.

This commit is contained in:
mdtrooper 2016-05-09 14:38:37 +02:00
parent 9e2460a042
commit 35d0d4db66
1 changed files with 2 additions and 2 deletions

View File

@ -2510,8 +2510,8 @@ MapController.prototype.multiple_selection_select_nodes = function() {
if (!self.is_selecty(node))
return 1; // Continue
var x = node.x;
var y = node.y;
var x = parseFloat(node.x);
var y = parseFloat(node.y);
var node_bbox = null;