From 54ac2e393faa17e146858957fb5ac90d494a92df Mon Sep 17 00:00:00 2001 From: Job Date: Wed, 14 Jun 2017 15:09:23 +0200 Subject: [PATCH] fix(input): slightly longer delay for autofocus (#12037) --- src/components/input/input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/input.ts b/src/components/input/input.ts index 39c822bf5e..f8ac113cdc 100644 --- a/src/components/input/input.ts +++ b/src/components/input/input.ts @@ -324,7 +324,7 @@ export class TextInput extends BaseInput implements IonicFormInput { case 'delay': // config says to chill out a bit and focus on the input after transitions // works best on desktop - this._plt.timeout(() => nativeInputEle.focus(), 650); + this._plt.timeout(() => nativeInputEle.focus(), 800); break; } // traditionally iOS has big issues with autofocus on actual devices