bc2a04d9d4d222e06fda8fcfb676efa33e87e028
				
			
			
		
	In 44adfee8 focus was automatically transferred to any DraftBox
that was in edit mode when CodeMirror sent the onRedraw event to
the widget. Michael's intent was to auto transfer focus into a
draft after the user scrolled it out of view, and then back in.
This fails in a number of subtle ways.
If more than one draft is editable and visible the user may see focus
transfer to the wrong draft. The behavior is undefined, but probable
that focus will transfer to the draft box positioned at the highest
line number. It depends on the order CM3 fires the redraw events.
Another issue arises from using the search box:
  - create draft on a line.
  - type some text, but do not save.
  - click elsewhere in the file to focus CM3 again.
  - start search with "/".
  - type some text that matches the file.
  - focus suddenly jumps back into the draft box.
CM3 fires a redraw event somewhere during the search process,
and focus is stolen out of the search input box back into the
draft that the user just left. This is horribly confusing.
Revert the auto transfer during widget redraw.
Change-Id: I96bc1d9485b3d6cdf8d8f3d3b2f57fdea8993035
		
	
Description
				RETIRED, Gerrit as used by OpenStack