From 81200f3ecb478d81831ba43cd5c585d38474a1e2 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 18 Apr 2018 15:50:26 -0400 Subject: [PATCH] only delay 100ms to focus search box --- src/popup/vault/current-tab.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/vault/current-tab.component.ts b/src/popup/vault/current-tab.component.ts index 96de369df35..46638124483 100644 --- a/src/popup/vault/current-tab.component.ts +++ b/src/popup/vault/current-tab.component.ts @@ -103,7 +103,7 @@ export class CurrentTabComponent implements OnInit, OnDestroy { window.setTimeout(() => { document.getElementById('search').focus(); - }, 200); + }, 100); } ngOnDestroy() {