aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/autocomplete.js
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2015-01-07 20:29:38 +0100
committerStefan Parviainen <saparvia@caterva.eu>2015-01-07 20:29:38 +0100
commit9f8ce331f3661463573dac9d1bd0bf68eb15a322 (patch)
tree3fa3f805b02a5b57578b7668b71958be1a9cd9b2 /view/js/autocomplete.js
parentf157122c351bdff3cf23520d791925f0f6463f3c (diff)
downloadvolse-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/autocomplete.js')
-rw-r--r--view/js/autocomplete.js3
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')