Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / editor / js / editor.dialog.es6.js
index 498ee28b94518def850697e1b8275768347e72fd..dda48600dde8479b1b306c46c2f52ca52d8e83a6 100644 (file)
@@ -3,7 +3,7 @@
  * AJAX commands used by Editor module.
  */
 
-(function ($, Drupal) {
+(function($, Drupal) {
   /**
    * Command to save the contents of an editor-provided modal.
    *
    *
    * @fires event:editor:dialogsave
    */
-  Drupal.AjaxCommands.prototype.editorDialogSave = function (ajax, response, status) {
+  Drupal.AjaxCommands.prototype.editorDialogSave = function(
+    ajax,
+    response,
+    status,
+  ) {
     $(window).trigger('editor:dialogsave', [response.values]);
   };
-}(jQuery, Drupal));
+})(jQuery, Drupal);