$(function(){
if (window.location.pathname === '/pl/fileindex/file' || window.location.pathname === '/pl/fileindex/file/index') {
$('body').append(`
Ссылка скопирована
`)
$('.gc-fileservice-table tbody tr').each(function(i,e) {
$(e).find('td[data-col-seq="2"] p').append(`
`);
$(e).find('td[data-col-seq="2"] button').click(function(){
navigator.clipboard.writeText($(e).find('td[data-col-seq="2"] a').attr('href')).then(function(){
})
$('.copy-alert').addClass('show');
setTimeout(function(){
$('.copy-alert').removeClass('show');
},2000)
})
})
}
})