Closed (won't fix)
Project:
Wysiwyg
Version:
6.x-1.x-dev
Component:
Editor - TinyMCE
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
21 Apr 2009 at 01:12 UTC
Updated:
21 Apr 2009 at 06:22 UTC
I'm trying to install the jSpell Evolution module on my server, which works fine stand alone.
To get it to work with drupal I have to add
function postTinyMCEInit() {
setTimeout(jspellInit,500);
};
tinyMCE.init({
oninit : "postTinyMCEInit"
});
Is this something that can be done with the WYSIWYG API module? Its not really a plugin so I wasn't sure if the documentation that applies for them would apply.
Comments
Comment #1
sunThat looks like a workaround/hack to get a buggy plugin working. The proper solution is to fix the plugin itself, not to introduce workarounds.