Ahhh! Well yuck.
Ok, I've tried a few things, but since the wysiwyg is an iframe and not really a textarea this might not be the right direction.
The closest I've gotten is by putting
Code:
googieDecorateTextarea(this.textobj);
on line 1323 of clientscript/vbulletin_textedit.js, below the lines
Code:
// this.editdoc.execCommand('justifyright', false, null);
}
this.spellobj = this.editdoc.body;
this.editdoc.editorid = this.editorid;
this.editwin.editorid = this.editorid;
All it does is pull up another instance of the spell check when wysiwyg it turned on though. Surely something like this would work somewhere in this page...
That or build a js conditional for the
Code:
googieDecorateTextarea("vB_Editor_001_textarea");
that would change to
Code:
googieDecorateTextarea("vB_Editor_001_iframe");
when wysiwyg is activated with AJAX.