Description
Module frontend files don't let Arshwell user to add templates or autocompleters on TinyMCE editors.
You should put specific attributes on frontend field config which will be saved as html attributes on the textarea.
After that, it'll be javascript job to take them into account when initializing the TinyMCE object.
Example
[...] => array(
'HTML' => array(
...
),
'JS' => array(
'tinymce' => true,
'templates' => array(
...
),
'autocompleters' => array(
...
)
)
),
Arshwell Version
0.*