Fix password dialog
This commit is contained in:
parent
c8e5f8e086
commit
dd0b1708f7
|
@ -116,13 +116,12 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function() {
|
getFocusedComponents: function() {
|
||||||
Common.UI.Window.prototype.show.apply(this, arguments);
|
return [this.inputPwd, this.repeatPwd];
|
||||||
|
},
|
||||||
|
|
||||||
var me = this;
|
getDefaultFocusableComponent: function () {
|
||||||
setTimeout(function(){
|
return this.inputPwd;
|
||||||
me.inputPwd.cmpEl.find('input').focus();
|
|
||||||
}, 500);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onPrimary: function(event) {
|
onPrimary: function(event) {
|
||||||
|
|
Loading…
Reference in a new issue