From bae37c5ce8d423f4281fde1bbde848962ed21a37 Mon Sep 17 00:00:00 2001 From: Arthur Khokhlov Date: Tue, 12 Sep 2023 12:45:13 +0200 Subject: [PATCH] docs fix --- .../joint/api/dia/CellView/prototype/findPortNode.html | 9 --------- .../api/dia/ElementView/prototype/findPortNode.html | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 docs/src/joint/api/dia/CellView/prototype/findPortNode.html create mode 100644 docs/src/joint/api/dia/ElementView/prototype/findPortNode.html diff --git a/docs/src/joint/api/dia/CellView/prototype/findPortNode.html b/docs/src/joint/api/dia/CellView/prototype/findPortNode.html deleted file mode 100644 index 82302889d..000000000 --- a/docs/src/joint/api/dia/CellView/prototype/findPortNode.html +++ /dev/null @@ -1,9 +0,0 @@ -
cellView.findPortNode(portId)
-

Return the port element of this CellView that is identified by portId (i.e. an SVGElement within this.el which has 'port': portId, an SVGElement referenced by portRoot selector).

- -

If the CellView does not have a port identified by portId, return null.

- -
cellView.findPortNode(portId, selector)
-

If selector is also specified, return the subelement of the port element that is identified by selector, according to the rules of the cellView.findBySelector() function.

- -

If the port element does not have a subelement that matches selector, return null.

diff --git a/docs/src/joint/api/dia/ElementView/prototype/findPortNode.html b/docs/src/joint/api/dia/ElementView/prototype/findPortNode.html new file mode 100644 index 000000000..5d31bcf11 --- /dev/null +++ b/docs/src/joint/api/dia/ElementView/prototype/findPortNode.html @@ -0,0 +1,9 @@ +
elementView.findPortNode(portId)
+

Return the port element of this ElementView that is identified by portId (i.e. an SVGElement within this.el which has 'port': portId, an SVGElement referenced by portRoot selector).

+ +

If the ElementView does not have a port identified by portId, return null.

+ +
elementView.findPortNode(portId, selector)
+

If selector is also specified, return the subelement of the port element that is identified by selector, according to the rules of the elementView.findBySelector() function.

+ +

If the port element does not have a subelement that matches selector, return null.