Browse Source

Test in JS for nodes which already exists.

master
Pete Shadbolt 7 years ago
parent
commit
f1a7498f9c
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      abp/static/scripts/editor.js

+ 4
- 0
abp/static/scripts/editor.js View File

@@ -44,6 +44,10 @@ editor.addQubitAtPoint = function(point) {
}
point.round();
var new_node = Math.floor(point.x) + "," + Math.floor(point.y) + "," + Math.floor(point.z);
if (Object.prototype.hasOwnProperty.call(abj.node, new_node)) {
gui.serverMessage("Node " + new_node +" already exists.");
return;
}
websocket.edit({action:"create", name:new_node, position: point});
editor.focus(new_node);
gui.serverMessage("Created node " + new_node +".");


Loading…
Cancel
Save