lbry.com/web/js/yt2/youtube_status.js
2018-03-20 08:58:28 -04:00

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);
});