You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
347 B

  1. /**
  2. Simple contrôleur pour copier du texte dans le presse papier en cliquant
  3. simplement sur un bouton
  4. Cf la macro twig `clipboard`
  5. **/
  6. import { Controller } from "@hotwired/stimulus"
  7. export default class extends Controller {
  8. static targets = [ "source" ]
  9. copy() {
  10. navigator.clipboard.writeText(this.sourceTarget.value)
  11. }
  12. }