explicitly bind key events to prevent defaults

This commit is contained in:
j 2014-09-25 13:32:04 +02:00
commit b309f9d33f
2 changed files with 33 additions and 16 deletions

View file

@ -704,6 +704,11 @@ oml.ui.infoView = function(identifyData) {
}
}
});
that.bindEvent({
mousedown: function() {
that.gainFocus();
}
})
return that;