How do I find out what version of TinyMCE I am running?
go to Chrome Console type tinyMCE.majorVersion and tinyMCE.minorVersion take a look
Having a look at the source of tinymce (file tiny_mce_src.js
, which is easier to read than, tiny_mce.js
which is minified) :
var tinymce = {
majorVersion : '3',
minorVersion : '2.5',
releaseDate : '2009-06-29',
// lots of code ^^
})();
So, I'd say that, in Javascript, something like this :
tinymce.majorVersion + '.' + tinymce.minorVersion
would do.
I tried it on the demo page, using firebug, and I get :
>>> tinymce.majorVersion + '.' + tinymce.minorVersion
"3.2.5"
So, seems to be working ;-)
If you have included tinymce in your page, then you can view it in your browser dev-tool
tinymce
or
tinyMCE
and there will be visible majorVersion and minorVersion at first glance
Open the page, on which you integrate the tinyMCE and press Control+Shift+J
and type following command.
tinyMCE
and the output of the above the command, will show both major version, minor version and release date as shown in figure.