diff --git a/.eslintrc b/.eslintrc
index 4f1f608..ce3c29e 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -20,6 +20,7 @@
     "comma-style": [2, "last"],
     "eqeqeq": [2, "smart"],
     "guard-for-in": 2,
+    "indent": [2, 2, {"indentSwitchCase": true}],
     "key-spacing": [2, {"beforeColon": false, "afterColon": true}],
     "no-implied-eval": 2,
     "no-mixed-spaces-and-tabs": 2,
diff --git a/core/modules/ckeditor/js/ckeditor.admin.js b/core/modules/ckeditor/js/ckeditor.admin.js
index 671313a..e3dbf2b 100644
--- a/core/modules/ckeditor/js/ckeditor.admin.js
+++ b/core/modules/ckeditor/js/ckeditor.admin.js
@@ -99,17 +99,16 @@
 
       // If dropped in a placeholder button group, the user must name it.
       if ($group.hasClass('placeholder')) {
+        if (view.isProcessing) {
+          return;
+        }
+        view.isProcessing = true;
 
-          if (view.isProcessing) {
-              return;
-          }
-          view.isProcessing = true;
-
-          Drupal.ckeditor.openGroupNameDialog(view, $group, callback);
+        Drupal.ckeditor.openGroupNameDialog(view, $group, callback);
       }
       else {
-          view.model.set('isDirty', true);
-          callback(true);
+        view.model.set('isDirty', true);
+        callback(true);
       }
     },
 
