mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
small refactor + clipboard copy on anchor click in instance page (#3318)
* Refacto scrollTo top and anchors * Add on click clipboard copy and notifier to anchors about/instance page * Fix margin top anchor middle title about page * Use viewportscroller for scrolltoanchor * Add to Link copied notification on instance page Co-authored-by: kimsible <kimsible@users.noreply.github.com>
This commit is contained in:
parent
901c36d5f4
commit
f3081d6401
8 changed files with 117 additions and 41 deletions
|
@ -144,8 +144,12 @@ function sortBy (obj: any[], key1: string, key2?: string) {
|
|||
})
|
||||
}
|
||||
|
||||
function scrollToTop () {
|
||||
window.scroll(0, 0)
|
||||
function scrollToTop (behavior: 'auto' | 'smooth' = 'auto') {
|
||||
window.scrollTo({
|
||||
left: 0,
|
||||
top: 0,
|
||||
behavior
|
||||
})
|
||||
}
|
||||
|
||||
function isInViewport (el: HTMLElement) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue