Skip to content

Commit

Permalink
Фикс бага
Browse files Browse the repository at this point in the history
Если в ссылке есть и фильтр и якорь, то якорь не срабатывает. Теперь при копировании ссылки на пьесу фильтр убирается.
  • Loading branch information
1640max committed Nov 7, 2024
1 parent e06355a commit 1b4ee8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ document.querySelectorAll('.piece-card__copy').forEach(button => {
const pieceCard = this.closest('.piece-card');
const pieceId = pieceCard.id;
// Создаем якорную ссылку
const anchorLink = `${window.location.href.split('#')[0]}#${pieceId}`;
const anchorLink = `${window.location.origin}${window.location.pathname}#${pieceId}`;

// Копируем якорную ссылку в буфер обмена
navigator.clipboard.writeText(anchorLink).then(() => {
Expand Down

0 comments on commit 1b4ee8b

Please sign in to comment.