112e0dc636d8ef1ada467bd4a7a68b4362b1b140
Bernd Wurst Zeige Clone-URLs als Eingab...

Bernd Wurst authored 6 years ago

1) function setup_copy_buttons() {
Bernd Wurst removed jquery and jqueryUI...

Bernd Wurst authored 1 year ago

2)     document.querySelectorAll('button.copyurl').forEach(
3)         obj => {
4)             obj.addEventListener("click", (e) => {
5)                 var id=e.currentTarget.id;
6)                 input = document.querySelector('#'+id+'_url');
Bernd Wurst Zeige Clone-URLs als Eingab...

Bernd Wurst authored 6 years ago

7)                 input.focus();
8)                 input.select();
9)                 document.execCommand("copy");
10)             });
11)         }
12)     );
13) }
14) 
Bernd Wurst removed jquery and jqueryUI...

Bernd Wurst authored 1 year ago

15) ready(() => {