scinote-web/app/assets/javascripts/sitewide/gestures.js
2016-08-17 17:57:54 +02:00

13 lines
367 B
JavaScript

// Scroll to and focus on element
function goToFormElement(input) {
$("html, body").animate(
{
scrollTop: $(input).closest(".form-group").offset().top
- ($(".navbar-fixed-top").outerHeight(true)
+ $(".navbar-secondary").outerHeight(true)
+ $(".alert-dismissable").outerHeight(true))
},
"slow",
function() { $(input).focus(); }
);
}