Skip to content

Commit

Permalink
textarea visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vvsviridov committed Apr 25, 2021
1 parent dea804a commit 3ba54a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions assets/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ async function getMetadata(fileRef) {

async function copyToClipboard() {
const textarea = document.createElement('textarea')
textarea.visible = false
document.body.appendChild(textarea)
textarea.value = fileUrl
textarea.select()
Expand Down
2 changes: 1 addition & 1 deletion serviceworker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const staticCacheName = 's-streamio-v2'
const staticCacheName = 's-streamio-v3'

const assetUrls = [
'.',
Expand Down

0 comments on commit 3ba54a1

Please sign in to comment.