js: fix display of ckeditor (#8559)

This commit is contained in:
Frédéric Péters 2015-10-08 10:00:18 +02:00
parent 2dd44b7b44
commit f6b5a0f7e0
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ $(document).ready( function() {
/* bail out if ckeditor advertised itself as not supported */
return;
}
if (typeof($.ckeditor) === 'undefined') {
if (typeof($().ckeditor) === 'undefined') {
/* the jquery adapter couldn't be loaded, don't bother failing further down */
return;
}