Merge pull request #5766 from JDonadio/fix/desktop-autocomplete

Auto complete field off
This commit is contained in:
Gustavo Maximiliano Cortez 2017-03-14 10:18:33 -03:00 committed by GitHub
commit 12db731fa8
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ angular.module('copayApp.services').service('popupService', function($log, $ioni
title: title,
subTitle: message,
cssClass: opts.class,
template: '<input ng-model="data.response" type="' + opts.inputType + '" autofocus>',
template: '<input ng-model="data.response" type="' + opts.inputType + '" value ="" autocomplete="off" autofocus>',
inputPlaceholder: opts.inputPlaceholder,
defaultText: opts.defaultText
}).then(function(res) {