diff options
author | Stefan Parviainen <saparvia@caterva.eu> | 2015-01-07 20:29:38 +0100 |
---|---|---|
committer | Stefan Parviainen <saparvia@caterva.eu> | 2015-01-07 20:29:38 +0100 |
commit | 9f8ce331f3661463573dac9d1bd0bf68eb15a322 (patch) | |
tree | 3fa3f805b02a5b57578b7668b71958be1a9cd9b2 /view/js | |
parent | f157122c351bdff3cf23520d791925f0f6463f3c (diff) | |
download | volse-hubzilla-9f8ce331f3661463573dac9d1bd0bf68eb15a322.tar.gz volse-hubzilla-9f8ce331f3661463573dac9d1bd0bf68eb15a322.tar.bz2 volse-hubzilla-9f8ce331f3661463573dac9d1bd0bf68eb15a322.zip |
Disable browser-based autocomplete when using the textcomplete based one
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/autocomplete.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 8966c675d..66d8cf90c 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -66,6 +66,7 @@ function basic_replace(item) { template: function(item) { return item['icon'] + item['text'] }, replace: function(item) { return "$1"+item['text'] + ' '; }, } + this.attr('autocomplete','off'); this.textcomplete([contacts,smilies],{className:'acpopup'}); }; })( jQuery ); @@ -84,6 +85,7 @@ function basic_replace(item) { replace: basic_replace, template: contact_format, } + this.attr('autocomplete','off'); this.textcomplete([contacts],{className:'acpopup'}); }; })( jQuery ); @@ -100,6 +102,7 @@ function basic_replace(item) { template: contact_format, } + this.attr('autocomplete','off'); var a = this.textcomplete([contacts],{className:'acpopup'}); if(typeof onselect !== 'undefined') |