KochiyaOcean / electron-react-titlebar

A github desktop style title bar component for electron.
MIT License
60 stars 15 forks source link

Copy / Paste techniques #12

Closed jfrux closed 6 years ago

jfrux commented 6 years ago

any tips on handling copy / paste? or is that what you mean by only a subset?

jfrux commented 6 years ago

my bad... figured it out... document.execCommand('cut'); document.execCommand('copy'); document.execCommand('paste');

seems to work.

sorry!