diff options
Diffstat (limited to 'core/modules/statistics/statistics.js')
-rw-r--r-- | core/modules/statistics/statistics.js | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/core/modules/statistics/statistics.js b/core/modules/statistics/statistics.js index 0c2f4107fb5..7c0360dc7c0 100644 --- a/core/modules/statistics/statistics.js +++ b/core/modules/statistics/statistics.js @@ -1,9 +1,7 @@ /** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ + * @file + * Statistics functionality. + */ (function ($, Drupal, drupalSettings) { $(document).ready(() => { @@ -11,7 +9,7 @@ type: 'POST', cache: false, url: drupalSettings.statistics.url, - data: drupalSettings.statistics.data + data: drupalSettings.statistics.data, }); }); -})(jQuery, Drupal, drupalSettings);
\ No newline at end of file +})(jQuery, Drupal, drupalSettings); |