id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
1204,FullScreen not registered,guest,gogo,"I was getting errors with Xinha about the fullscreen button not being registered.  Ultimately I tracked it down to this source in XinhaCore.js:

{{{
  url = _editor_url + 'modules/FullScreen/full-screen.js';
  if ( !Xinha.loadPlugins([{plugin:""FullScreen"",url:url}], function() { editor.generate(); } ))
  {
    return false;
  }
}}}

The other plugins loaded there are registered, but not FullScreen.  Adding {{{editor.registerPlugin('FullScreen')}}} immediately after this code fixed the problem for me.

(I had this problem using 0.95, but it looks the same in the trunk)",defect,closed,normal,0.96,Xinha Core,trunk,normal,worksforme,,ianb@…
