How to determine version of CKEditor

The version of CKEditor is specified in various files bundled with its source.

ckeditor.asp:

	Private Sub Class_Initialize()
		version = "3.5.1"
...

ckeditor_php4.php:

class CKEditor
{
	/**
	 * The version of %CKEditor.
	 * \private
	 */
	var $version = '3.5.1';
...

ckeditor_php5.php:

class CKEditor
{
	/**
	 * The version of %CKEditor.
	 */
	const version = '3.5.1';
...

You can also find it by viewing a web page that has the editor, opening your browser console (e.g. Tools -> Web Developer -> Web Console in Firefox) and entering CKEDITOR.version at its command prompt.

References

Last modified: 14/11/2013 Tags:

Related Pages

Other pages possibly of interest:

This website is a personal resource. Nothing here is guaranteed correct or complete, so use at your own risk and try not to delete the Internet. -Stephan

Site Info

Privacy policy

Go to top