
focusgrade(){
var u = navigator.userAgent;
if (u.indexOf("Android") > -1 || u.indexOf("Adr") > -1) {
window.addEventListener("resize", function() {
if ( document.activeElement.tagName == "INPUT" || document.activeElement.tagName == "TEXTAREA"
) {window.setTimeout(function() { document.activeElement.scrollIntoView(false); //scrollIntoViewIfNeeded()
}, 0);
}
});
}
}