mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
14 lines
No EOL
320 B
JavaScript
14 lines
No EOL
320 B
JavaScript
$("#scroll_email").click(function () {
|
|
$('html, body').animate({
|
|
scrollTop: $("#email").offset().top
|
|
}, 2000);
|
|
$('#email').select();
|
|
$("#email").focus();
|
|
|
|
});
|
|
|
|
$("#scroll-sync").click(function () {
|
|
$('html, body').animate({
|
|
scrollTop: $("#sync-consent").offset().top
|
|
}, 2000);
|
|
}); |