You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The gridmanager throws the following error, when tinyMCE is present on the page and tinymce.config is not overwritten.
TypeError: t.plugins.split is not a function
The problem here seems to be the default optinos for tinyMCE in gridmanager.js on line 1527. Here, tinymce.config.plugins is preset with an array instead a string. Removing [ and ] should solve this issue.
The text was updated successfully, but these errors were encountered:
I just saw, that it is working on your demo, so maybe this is a problem with running TinMCE < 4.1?
Anyway removing the brackets should have no effect on newer versions of the editor and fix it for older ones.
The gridmanager throws the following error, when tinyMCE is present on the page and
tinymce.config
is not overwritten.The problem here seems to be the default optinos for tinyMCE in gridmanager.js on line 1527. Here,
tinymce.config.plugins
is preset with an array instead a string. Removing[
and]
should solve this issue.The text was updated successfully, but these errors were encountered: