diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2018-07-06 12:18:34 +0100 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2018-07-06 12:18:34 +0100 |
commit | e4b5fe2ef8f702f2ba9085a15486aea71b15256d (patch) | |
tree | 502bb8ca796c08fe17ff1dbf75a4bc5af3d578b2 /core/modules/quickedit/js/quickedit.es6.js | |
parent | 6ae83e17664cc5f19809b7c4ced4f00f43257946 (diff) | |
download | drupal-e4b5fe2ef8f702f2ba9085a15486aea71b15256d.tar.gz drupal-e4b5fe2ef8f702f2ba9085a15486aea71b15256d.zip |
Issue #2983375 by m1r1k, ApacheEx, drpal: JS codestyle: function-paren-newline
Diffstat (limited to 'core/modules/quickedit/js/quickedit.es6.js')
-rw-r--r-- | core/modules/quickedit/js/quickedit.es6.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/modules/quickedit/js/quickedit.es6.js b/core/modules/quickedit/js/quickedit.es6.js index 145c26dc1a94..06e6d53dc760 100644 --- a/core/modules/quickedit/js/quickedit.es6.js +++ b/core/modules/quickedit/js/quickedit.es6.js @@ -18,7 +18,8 @@ */ (function ($, _, Backbone, Drupal, drupalSettings, JSON, storage) { - const options = $.extend(drupalSettings.quickedit, + const options = $.extend( + drupalSettings.quickedit, // Merge strings on top of drupalSettings so that they are not mutable. { strings: { |