Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / statistics / statistics.js
1 /**
2 * DO NOT EDIT THIS FILE.
3 * See the following change record for more information,
4 * https://www.drupal.org/node/2815083
5 * @preserve
6 **/
7
8 (function ($, Drupal, drupalSettings) {
9   $(document).ready(function () {
10     $.ajax({
11       type: 'POST',
12       cache: false,
13       url: drupalSettings.statistics.url,
14       data: drupalSettings.statistics.data
15     });
16   });
17 })(jQuery, Drupal, drupalSettings);