Is there something I can do to force a keyboard to disappear when a drawer is opened? I haven't tested on iOS yet, but on android with my app I have an issue if an input has focus and the keyboard is shown swiping to open the drawer will leave the keyboard open. It was my understanding that this is a function of the input still having focus. I have tried a few different techniques to dismiss the keyboard, '$( document.activeElement ).blur();' didn't work and neither did '$( "input:focus" ).blur();' I read a post on stack overflow where someone tried setting focus on a checkbox to cause the keyboard to be removed, but that didn't help either.
Anybody know of a way to handle this?
-David
Anybody know of a way to handle this?
-David