Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / ckeditor / tests / modules / js / ajax-css.es6.js
index af97a3bde5070bf12ffcb4ab2ab9e39eeb653b03..532ec4481420f0319e0b12e129c8003390d58c04 100644 (file)
@@ -3,18 +3,17 @@
  * Contains client-side code for testing CSS delivered to CKEditor via AJAX.
  */
 
-(function (Drupal, ckeditor, editorSettings, $) {
+(function(Drupal, ckeditor, editorSettings, $) {
   Drupal.behaviors.ajaxCssForm = {
-
     attach(context) {
       // Initialize an inline CKEditor on the #edit-inline element if it
       // isn't editable already.
       $(context)
         .find('#edit-inline')
         .not('[contenteditable]')
-        .each(function () {
+        .each(function() {
           ckeditor.attachInlineEditor(this, editorSettings.formats.test_format);
         });
     },
   };
-}(Drupal, Drupal.editors.ckeditor, drupalSettings.editor, jQuery));
+})(Drupal, Drupal.editors.ckeditor, drupalSettings.editor, jQuery);