mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-02-06 18:35:32 -05: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());
|
|
});
|
|
|
|
}); |