Security update to Drupal 8.4.6
[yaffs-website] / web / core / modules / statistics / statistics.es6.js
1 /**
2  * @file
3  * Statistics functionality.
4  */
5
6 (function ($, Drupal, drupalSettings) {
7   $(document).ready(() => {
8     $.ajax({
9       type: 'POST',
10       cache: false,
11       url: drupalSettings.statistics.url,
12       data: drupalSettings.statistics.data,
13     });
14   });
15 }(jQuery, Drupal, drupalSettings));