Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions tlas/copy-to-clipboard.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
'use strict'

document.querySelectorAll('.copyicon')?.forEach(elem => {
elem.addEventListener('click', copyToClipBoard)
})

function copyToClipBoard(e) {
const parentNode = e.currentTarget.parentNode
const text = parentNode?.querySelector('.copytext')?.innerText
if (text) {
navigator.clipboard.writeText(text)
const copyIcon = parentNode.querySelector('.copyicon')
const copiedIcon = parentNode.querySelector('.copiedicon')
copyIcon.style.display = 'none'
copiedIcon.style.display = 'block'
setTimeout(() => {
copyIcon.style.display = 'block'
copiedIcon.style.display = 'none'
}, 1500)
}
}
3 changes: 3 additions & 0 deletions tlas/images/copied-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tlas/images/demo-apps/bloopernet.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed tlas/images/demo-apps/business-cat.jpg
Binary file not shown.
Binary file removed tlas/images/demo-apps/business-cat.png
Binary file not shown.
Binary file removed tlas/images/demo-apps/cat-chat-demo.jpg
Binary file not shown.
Binary file removed tlas/images/demo-apps/dashboard.jpg
Binary file not shown.
Binary file removed tlas/images/demo-apps/dashboard.png
Binary file not shown.
Binary file removed tlas/images/demo-apps/epiphany.jpg
Binary file not shown.
Binary file removed tlas/images/demo-apps/epiphany.png
Binary file not shown.
Binary file added tlas/images/demo-apps/firehouse-chat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed tlas/images/demo-apps/partykit-poem.jpg
Binary file not shown.
Binary file removed tlas/images/demo-apps/partykit-poem.png
Binary file not shown.
Binary file added tlas/images/demo-apps/spend-sage.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed tlas/images/demo-apps/starter-kit.jpg
Binary file not shown.
Binary file removed tlas/images/demo-apps/starter-kit.png
Binary file not shown.
Binary file added tlas/images/demo-apps/taskify.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed tlas/images/demo-apps/team-chat.jpg
Binary file not shown.
Binary file removed tlas/images/demo-apps/team-chat.png
Binary file not shown.
Binary file added tlas/images/demo-apps/tripgenius.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tlas/images/demo-apps/usequickcheck.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions tlas/images/react-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tlas/images/solid-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions tlas/images/star-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading