Archived
2
0

potential fix for #26

This commit is contained in:
Craig 2020-02-02 22:51:28 +00:00
parent 6ba4d94a04
commit 2337de90a1

View File

@ -239,7 +239,7 @@
@Watch('clipboard')
onClipboardChanged(clipboard: string) {
if (navigator.clipboard) {
if (navigator.clipboard && typeof navigator.clipboard.writeText === 'function') {
navigator.clipboard.writeText(clipboard).catch(console.error)
}
}
@ -329,7 +329,7 @@
return
}
if (this.hosting && navigator.clipboard) {
if (this.hosting && navigator.clipboard && typeof navigator.clipboard.readText === 'function') {
navigator.clipboard
.readText()
.then(text => {