turn off autocompletion for password field

refs #2632
This commit is contained in:
Morris Jobke 2013-04-07 21:51:10 +02:00
parent 5fe5e1e17e
commit 38941a61bf
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@
'style' : $element.attr('style'),
'size' : $element.attr('size'),
'name' : $element.attr('name')+'-clone',
'tabindex' : $element.attr('tabindex')
'tabindex' : $element.attr('tabindex'),
'autocomplete' : 'off'
});
return $clone;