retejs / rete

JavaScript framework for visual programming
https://retejs.org
MIT License
10.17k stars 653 forks source link

Disable context menu on input controls #491

Closed quicksilver32 closed 4 years ago

quicksilver32 commented 4 years ago

Hello, how i can disable context menu by clicking rigth click on input controls to use context menu of text field, like copying and inserting text, or highlithing

Hatead1 commented 4 years ago

<input type="text" ...... @contextmenu.stop="" />

quicksilver32 commented 4 years ago

@Hatead1 thanks!!!

quicksilver32 commented 4 years ago

And know anybody, how to highlight text instead of dragging node?

Hatead1 commented 4 years ago

... @pointerdown.stop="" @pointermove.stop="" ...

quicksilver32 commented 4 years ago

@Hatead1 big thank you!!