core/modules/ckeditor/js/ckeditor.admin.js | 4 ++-- core/modules/ckeditor/js/views/ControllerView.js | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/core/modules/ckeditor/js/ckeditor.admin.js b/core/modules/ckeditor/js/ckeditor.admin.js index 7a9b34c..def5971 100644 --- a/core/modules/ckeditor/js/ckeditor.admin.js +++ b/core/modules/ckeditor/js/ckeditor.admin.js @@ -105,7 +105,7 @@ } view.isProcessing = true; - openGroupNameDialog(view, $group, callback); + Drupal.ckeditor.openGroupNameDialog(view, $group, callback); } else { view.model.set('isDirty', true); @@ -133,7 +133,7 @@ // If there are any rows with just a placeholder group, mark the row as a // placeholder. $row.parent().children().each(function () { - var $row = $(this); + $row = $(this); if ($row.find('.ckeditor-toolbar-group').not('.placeholder').length === 0) { $row.addClass('placeholder'); } diff --git a/core/modules/ckeditor/js/views/ControllerView.js b/core/modules/ckeditor/js/views/ControllerView.js index 99b44ff..f21e1d7 100644 --- a/core/modules/ckeditor/js/views/ControllerView.js +++ b/core/modules/ckeditor/js/views/ControllerView.js @@ -349,6 +349,3 @@ }); })(Drupal, Backbone, jQuery); - - -