autocomplete off

This commit is contained in:
Kyle Spearrin 2018-04-26 00:19:54 -04:00
parent df1649bac1
commit 7b5d3eb15c
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export class InputVerbatimDirective {
ngOnInit() { ngOnInit() {
if (this.disableComplete && !this.el.nativeElement.hasAttribute('autocomplete')) { if (this.disableComplete && !this.el.nativeElement.hasAttribute('autocomplete')) {
this.renderer.setAttribute(this.el.nativeElement, 'autocomplete', 'nope'); this.renderer.setAttribute(this.el.nativeElement, 'autocomplete', 'off');
} }
if (!this.el.nativeElement.hasAttribute('autocapitalize')) { if (!this.el.nativeElement.hasAttribute('autocapitalize')) {
this.renderer.setAttribute(this.el.nativeElement, 'autocapitalize', 'none'); this.renderer.setAttribute(this.el.nativeElement, 'autocapitalize', 'none');