Add select vertex for default handler

This commit is contained in:
Oleg Sh
2025-06-09 20:15:24 +02:00
parent 13f305dcb5
commit 54e58c8011
4 changed files with 177 additions and 148 deletions

View File

@@ -182,6 +182,12 @@ BaseHandler.prototype.GetSelect2VertexMenu = function()
this.GetSelectVertexMenu("Vertex1") + " &rarr; " + this.GetSelectVertexMenu("Vertex2") + "</span>";
}
BaseHandler.prototype.GetSelectOneVertexMenu = function()
{
return "<span style=\"float:right\">" +
this.GetSelectVertexMenu("Vertex1") + "</span>";
}
BaseHandler.prototype.SelectFirstVertexMenu = function(vertex1Text, vertex)
{}
@@ -455,3 +461,5 @@ BaseHandler.prototype.ShowEditEdgeDialog = function(edgeObject) {
}
});
}
BaseHandler.prototype.GraphWaUpdated = function() {}