don't clear focusIn timer on focusOut

This commit is contained in:
Tim Lancina
2014-05-09 11:39:34 -05:00
parent b9353e71f6
commit b0cfe233a8
2 changed files with 2 additions and 1 deletions

View File

@@ -126,7 +126,6 @@ function keyboardShow(element, elementTop, elementBottom, viewportHeight, keyboa
}
function keyboardFocusOut(e) {
clearTimeout(keyboardFocusInTimer);
clearTimeout(keyboardFocusOutTimer);
keyboardFocusOutTimer = setTimeout(keyboardHide, 350);

View File

@@ -72,6 +72,8 @@ Notes:
iOS 7 keyboard is 216px tall without the accessory bar
iOS 7 keyboard is 260px tall with the accessory bar
Switching inputs fires focusOut on iOS, doesn't on Android
*/