Skip to content

Commit

Permalink
Issue 5934: With 'Enable Accessibility Enhancements' in HTML -> edit …
Browse files Browse the repository at this point in the history
…the editor looses focus
  • Loading branch information
janodvarko committed Sep 20, 2012
1 parent 843d0d0 commit 6a04745
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions extension/content/firebug/accessible/a11y.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1237,6 +1237,11 @@ Firebug.A11yModel = Obj.extend(Firebug.Module,
onObjectBoxSelected: function(objectBox, forceFocus) onObjectBoxSelected: function(objectBox, forceFocus)
{ {
var panel = Firebug.getElementPanel(objectBox); var panel = Firebug.getElementPanel(objectBox);

// See issue 5934
if (panel.editing)
return;

var panelA11y = this.getPanelA11y(panel); var panelA11y = this.getPanelA11y(panel);
if (!panelA11y) if (!panelA11y)
return; return;
Expand Down

0 comments on commit 6a04745

Please sign in to comment.