How do I find out what version of TinyMCE I am running?
Version 5.10. 0 - October 10, 2021.
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 ;-)
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With