dont remove focus from Ox.EditableContent while editing
This commit is contained in:
parent
cddf742efd
commit
3d9521b372
4 changed files with 12 additions and 4 deletions
|
@ -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() {
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue