jxxcarlson / elm-editor

A pure Elm text editor based on Martin Janiczek's demo
https://jxxcarlson.github.io/app/text-editor/index.html
BSD 3-Clause "New" or "Revised" License
44 stars 4 forks source link

Copy to system clipboad, paste from clipboard commands #15

Open jxxcarlson opened 4 years ago

jxxcarlson commented 4 years ago

These need to work for non-Chrome browsers.

Anton-4 commented 4 years ago

FYI: the good folks at firefox are working on fixing this. According to their compatibility table they are the last browser to provide the navigator.clipboard.writeText and readText functionality, aside from IE of course.

jxxcarlson commented 4 years ago

Thanks @Anton-4 That is good news!

Anton-4 commented 4 years ago

Firefox has implemented readText but will only allow it for browser extensions sadly.

jxxcarlson commented 4 years ago

I'll take a look at this tomorrow. Thanks!