/* Edit Node */ /* Move Node */ var movingMode = Cookies.getJSON('bcloud_moving_node'); function editNode(nodeId) { // Remove the 'n_' suffix from the id if (nodeId.substring(0, 2) == 'n_') { nodeId = nodeId.substr(2); } var url = '/nodes/' + nodeId + '/edit?embed=1'; $.get(url, function(dataHtml) { // Update the DOM injecting the generate HTML into the page $('#project_context').html(dataHtml); updateUi(nodeId, 'edit'); }) .fail(function(dataResponse) { $('#project_context').html($('