diff options
author | Mario <mario@mariovavti.com> | 2020-05-08 12:21:06 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-05-08 12:21:06 +0000 |
commit | 22d68ddf08a53db3fafaf0dc8def07df3ed26c1b (patch) | |
tree | 5227098324885a4735e8d74486a69710961171b7 /view/js | |
parent | 2cba88f1ebd31184b4537e0918309f6515d44101 (diff) | |
download | volse-hubzilla-22d68ddf08a53db3fafaf0dc8def07df3ed26c1b.tar.gz volse-hubzilla-22d68ddf08a53db3fafaf0dc8def07df3ed26c1b.tar.bz2 volse-hubzilla-22d68ddf08a53db3fafaf0dc8def07df3ed26c1b.zip |
it looks like this was required at some point but is not required anymore for our autocomplete to work as expected. fixes #1463
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/autocomplete.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index c194338d6..660b5f190 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -203,7 +203,7 @@ function string2bb(element) { context: function(text) { return text.toLowerCase(); }, template: smiley_format }; - this.attr('autocomplete','off'); + //this.attr('autocomplete','off'); var Textarea = Textcomplete.editors.Textarea; @@ -298,7 +298,7 @@ function string2bb(element) { template: contact_format, }; - this.attr('autocomplete','off'); + //this.attr('autocomplete','off'); var textcomplete; var Textarea = Textcomplete.editors.Textarea; @@ -341,7 +341,7 @@ function string2bb(element) { template: contact_format, }; - this.attr('autocomplete','off'); + //this.attr('autocomplete','off'); var textcomplete; var Textarea = Textcomplete.editors.Textarea; @@ -427,7 +427,7 @@ function string2bb(element) { template: bbco_format }; - this.attr('autocomplete','off'); + //this.attr('autocomplete','off'); var Textarea = Textcomplete.editors.Textarea; |