id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
1110,SetHTML if not loading finished,guest,guillaumed,"I'm using Xinha in Flex (Adobe) which use the !AjaxBridge. I cannot easily control the setHTML call from Flex, so it can arrive too early.. To avoid handling event loading, I preferd to easily patch this with the following code in setHTML

{{{
Xinha.prototype.setHTML = function(html)
{
  if (this._doc != null) {
    if ( !this.config.fullPage )
    {
      this._doc.body.innerHTML = html;
    }
    else
    {
      this.setFullHTML(html);
    }
  }
  this._textArea.value = html;
};
}}}

",enhancement,closed,low,,Xinha Core,,normal,fixed,,gdo@…
