From 0f29d67bc3490240c3902f71c7e27145e772ebd6 Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Tue, 5 Nov 2013 08:55:58 -0800 Subject: [PATCH] Issue #2117687 by geerlingguy, Wim Leers: CKEditor Plugin settings vertical tab not showing when isEnabled() is set to TRUE. --- core/modules/ckeditor/js/ckeditor.admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/ckeditor/js/ckeditor.admin.js b/core/modules/ckeditor/js/ckeditor.admin.js index 7d41680d3f0e..84aa024494c4 100644 --- a/core/modules/ckeditor/js/ckeditor.admin.js +++ b/core/modules/ckeditor/js/ckeditor.admin.js @@ -1422,7 +1422,7 @@ Drupal.behaviors.ckeditorAdminButtonPluginSettings = { var $ckeditorPluginSettings = $context.find('#ckeditor-plugin-settings').once('ckeditor-plugin-settings'); if ($ckeditorPluginSettings.length) { // Hide all button-dependent plugin settings initially. - $ckeditorPluginSettings.find('[data-ckeditor-plugin-id]').each(function () { + $ckeditorPluginSettings.find('[data-ckeditor-buttons]').each(function () { var $this = $(this); if ($this.data('verticalTab')) { $this.data('verticalTab').tabHide(); -- GitLab