Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I find out what version of TinyMCE I am running?

Tags:

tinymce

How do I find out what version of TinyMCE I am running?

like image 458
leora Avatar asked Aug 16 '09 14:08

leora


People also ask

What is the latest version of TinyMCE?

Version 5.10. 0 - October 10, 2021.


2 Answers

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 ;-)

like image 188
Pascal MARTIN Avatar answered Oct 08 '22 09:10

Pascal MARTIN


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.

enter image description here

like image 35
Hamza Zafeer Avatar answered Oct 08 '22 08:10

Hamza Zafeer