mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2024-10-01 01:05:53 -04:00
8 lines
204 B
JavaScript
8 lines
204 B
JavaScript
$(document).ready(function(){
|
|
|
|
// Copy code snippets to the clipboard
|
|
$('.code-snippet').on('click',function(){
|
|
navigator.clipboard.writeText($(this).children('input').val());
|
|
});
|
|
|
|
}); |