dont remove focus from Ox.EditableContent while editing

This commit is contained in:
j 2014-10-20 16:54:34 +01:00
parent cddf742efd
commit 3d9521b372
4 changed files with 12 additions and 4 deletions

View file

@ -1156,7 +1156,9 @@ pandora.ui.infoView = function(data) {
that.bindEvent({ that.bindEvent({
mousedown: function() { mousedown: function() {
that.gainFocus() setTimeout(function() {
!Ox.Focus.focusedElementIsInput() && that.gainFocus();
});
}, },
pandora_icons: that.reload, pandora_icons: that.reload,
pandora_showsiteposters: function() { pandora_showsiteposters: function() {

View file

@ -1059,7 +1059,9 @@ pandora.ui.infoView = function(data) {
that.bindEvent({ that.bindEvent({
mousedown: function() { mousedown: function() {
that.gainFocus() setTimeout(function() {
!Ox.Focus.focusedElementIsInput() && that.gainFocus();
});
}, },
pandora_icons: that.reload, pandora_icons: that.reload,
pandora_showsiteposters: function() { pandora_showsiteposters: function() {

View file

@ -634,7 +634,9 @@ pandora.ui.infoView = function(data) {
that.bindEvent({ that.bindEvent({
mousedown: function() { mousedown: function() {
that.gainFocus() setTimeout(function() {
!Ox.Focus.focusedElementIsInput() && that.gainFocus();
});
}, },
pandora_icons: that.reload, pandora_icons: that.reload,
pandora_showsiteposters: function() { pandora_showsiteposters: function() {

View file

@ -813,7 +813,9 @@ pandora.ui.infoView = function(data) {
that.bindEvent({ that.bindEvent({
mousedown: function() { mousedown: function() {
that.gainFocus() setTimeout(function() {
!Ox.Focus.focusedElementIsInput() && that.gainFocus();
});
}, },
pandora_icons: that.reload, pandora_icons: that.reload,
pandora_showsiteposters: function() { pandora_showsiteposters: function() {