Closed ghost closed 8 years ago
Recommend adding $ timeout function var showKeyboard = function () {... in line 471.
Like this:
``
// Focus the input Which will show the keyboard.
var showKeyboard = function () {
if (! isKeyboardShown) {
isKeyboardShown = true;
$ timeout (function () {
input.focus input && ();
console.log ('called focus on input')
}, 400);
}
};
``
This will make the input cursor be added after the animation.
When run function $ionicFilterBar.show() the cursor is visible and blink with vertical animate.
How can i disable focus while animation?