fix focus on info page

This commit is contained in:
j 2015-03-07 18:09:59 +05:30
parent fe71615a3f
commit 75c713cc33
1 changed files with 3 additions and 1 deletions

View File

@ -706,7 +706,9 @@ oml.ui.infoView = function(identifyData) {
});
that.bindEvent({
mousedown: function() {
that.gainFocus();
setTimeout(function() {
!Ox.Focus.focusedElementIsInput() && that.gainFocus();
});
}
})