mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
New maps in progress... (Document the code)
This commit is contained in:
parent
5f53b2fa12
commit
058a51232e
@ -2417,17 +2417,37 @@ NetworkmapController.prototype.get_menu_nodes = function() {
|
|||||||
return node_menu;
|
return node_menu;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function resize_node_save
|
||||||
|
* Return menu
|
||||||
|
* Declaration
|
||||||
|
*/
|
||||||
NetworkmapController.prototype.resize_node_save = function(graph_id) {
|
NetworkmapController.prototype.resize_node_save = function(graph_id) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function move_node
|
||||||
|
* Return menu
|
||||||
|
* Declaration
|
||||||
|
*/
|
||||||
NetworkmapController.prototype.move_node = function(node) {
|
NetworkmapController.prototype.move_node = function(node) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function apply_temp_arrows
|
||||||
|
* Return menu
|
||||||
|
* Calls father functions
|
||||||
|
*/
|
||||||
NetworkmapController.prototype.apply_temp_arrows = function(target_id) {
|
NetworkmapController.prototype.apply_temp_arrows = function(target_id) {
|
||||||
MapController.prototype.apply_temp_arrows.call(this, target_id);
|
MapController.prototype.apply_temp_arrows.call(this, target_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function deleteNode
|
||||||
|
* Return menu
|
||||||
|
* Calls father functions
|
||||||
|
*/
|
||||||
NetworkmapController.prototype.deleteNode = function(self, target) {
|
NetworkmapController.prototype.deleteNode = function(self, target) {
|
||||||
MapController.prototype.deleteNode.call(this, self, target);
|
MapController.prototype.deleteNode.call(this, self, target);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user