statistics.js 401 B

1234567891011121314151617
  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. (function ($, Drupal, drupalSettings) {
  8. $(document).ready(function () {
  9. $.ajax({
  10. type: 'POST',
  11. cache: false,
  12. url: drupalSettings.statistics.url,
  13. data: drupalSettings.statistics.data
  14. });
  15. });
  16. })(jQuery, Drupal, drupalSettings);