From e4f7436dfb185bc5a5f3b0c5ecafb26f4930ded3 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 3 May 2017 09:53:40 -0400 Subject: [PATCH] do not animate autofill on mobile - Animate seems to now cause a JS error when autofilling on iOS, which stops the password from autofilling. Turn the option off. --- src/iOS.Extension/Models/FillScript.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iOS.Extension/Models/FillScript.cs b/src/iOS.Extension/Models/FillScript.cs index b0f0dbb53..a228238d2 100644 --- a/src/iOS.Extension/Models/FillScript.cs +++ b/src/iOS.Extension/Models/FillScript.cs @@ -113,7 +113,7 @@ namespace Bit.iOS.Extension.Models [JsonProperty(PropertyName = "properties")] public object Properties { get; set; } = new object(); [JsonProperty(PropertyName = "options")] - public object Options { get; set; } = new object(); + public object Options { get; set; } = new { animate = false }; [JsonProperty(PropertyName = "metadata")] public object MetaData { get; set; } = new object();