Skip to content

Commit

Permalink
Fixing open issue JENKINS-29280 which autofills AD username/password …
Browse files Browse the repository at this point in the history
…in browsers
  • Loading branch information
Dima Kovalenko committed Jul 28, 2015
1 parent 1860bdc commit 64c7f9d
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -22,4 +22,10 @@
<f:nested>
<f:validateButton with="domain,server,site,bindName,bindPassword" title="${%Test}" method="validate"/>
</f:nested>
<script type="text/javascript" >
document.addEventListener("DOMContentLoaded", function(event) {
document.getElementsByName("_.bindPassword")[0].autocomplete = "off";
document.getElementsByName("_.bindName")[0].autocomplete = "off";
});
</script>
</j:jelly>

0 comments on commit 64c7f9d

Please sign in to comment.