Jero Soler

Results 367 comments of Jero Soler

> so why are we nulling out editor.container.onpointermove? It is passed to null. Because once the mouse is up there is no reason to pass the position function. You can...

How strange... a node yes, but a connection no... You can fix it with this right now: ```javascript editor.on("connectionSelected", () => { if(document.activeElement !== editor.container) { editor.container.focus(); } }) ```

How did you add the node? When a node is added with the addnode function they are always at the same level. What if a node can have several levels....

What is the reason for having several nodes at different levels? Maybe there is some other solution. I think the library could be adapted, even though you would have to...

Are they multiple nodes? If there are multiple nodes, have you thought about adding a new editor to a drawflow node? Maybe that could be your solution. If it's not...

Yes it's possible. ![image](https://user-images.githubusercontent.com/30957047/155692710-b72fed90-c0db-43d4-88c0-f32280b7d62c.png) In this case I use an output displacement technique. I use the class link followed by the output to which it is directed to move the...

Hi @danieldvc Thanks for PR. Can you elaborate more on the problem that it corrects? For example in node with 3 outputs. Using: ```javascript /* Node 13 output_1 output_2 output_3...

Possible solution: - https://github.com/jerosoler/Drawflow/issues/423#issuecomment-1131533142

Hi! I'ts possible with css: ![image](https://user-images.githubusercontent.com/30957047/89006717-a71aba80-d307-11ea-930a-ef658b90ffc9.png) For example: ```css .drawflow-node.multiple .outputs .output:nth-child(1):before { display: block; content: "Yes"; position: relative; right: 30px; } .drawflow-node.multiple .outputs .output:nth-child(2):before { display: block; content: "No";...

In the center of line? ![image](https://user-images.githubusercontent.com/30957047/89011018-f7961600-d30f-11ea-98a8-b89c0fc86322.png)