1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 15:21:13 +03:00

AC-281 changed form autocomplete=false to autocompleted=off. 'off' is correct, and FF seems to resepect it, at least on Mac OSX.

This commit is contained in:
chouseknecht 2013-07-28 07:45:24 -04:00
parent fba932e283
commit dec56b8c0a

View File

@ -659,7 +659,7 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies'])
html += "<form class=\"form-horizontal";
html += (this.form['class']) ? ' ' + this.form['class'] : '';
html += "\" name=\"" + this.form.name + "_form\" id=\"" + this.form.name + "\" autocomplete=\"false\" novalidate>\n";
html += "\" name=\"" + this.form.name + "_form\" id=\"" + this.form.name + "\" autocomplete=\"off\" novalidate>\n";
html += "<div ng-show=\"flashMessage != null && flashMessage != undefined\" class=\"alert alert-info\">{{ flashMessage }}</div>\n";
var field;