Fix Bug 55990
This commit is contained in:
parent
d36199c999
commit
469c4108ef
|
@ -605,6 +605,10 @@ define([
|
||||||
this.passwordHide(e);
|
this.passwordHide(e);
|
||||||
this.hidePwd = true;
|
this.hidePwd = true;
|
||||||
}
|
}
|
||||||
|
var me = this;
|
||||||
|
setTimeout(function () {
|
||||||
|
me.focus();
|
||||||
|
}, 1);
|
||||||
},
|
},
|
||||||
|
|
||||||
passwordShow: function (e) {
|
passwordShow: function (e) {
|
||||||
|
@ -643,6 +647,10 @@ define([
|
||||||
else {
|
else {
|
||||||
this._btnElm.off('mouseup', this.passwordHide);
|
this._btnElm.off('mouseup', this.passwordHide);
|
||||||
this._btnElm.off('mouseout', this.passwordHide);
|
this._btnElm.off('mouseout', this.passwordHide);
|
||||||
|
var me = this;
|
||||||
|
setTimeout(function () {
|
||||||
|
me.focus();
|
||||||
|
}, 1);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
textHintShowPwd: 'Show password',
|
textHintShowPwd: 'Show password',
|
||||||
|
|
Loading…
Reference in a new issue