2015-06-05 20:17:55 +00:00
|
|
|
/**
|
2017-05-19 22:12:53 +00:00
|
|
|
* DO NOT EDIT THIS FILE.
|
|
|
|
* See the following change record for more information,
|
2017-05-23 14:30:14 +00:00
|
|
|
* https://www.drupal.org/node/2815083
|
2017-05-19 22:12:53 +00:00
|
|
|
* @preserve
|
|
|
|
**/
|
2015-06-05 20:17:55 +00:00
|
|
|
|
2013-09-21 23:39:42 +00:00
|
|
|
(function ($, Drupal, drupalSettings) {
|
2014-01-27 21:41:32 +00:00
|
|
|
$(document).ready(function () {
|
2012-04-26 04:05:27 +00:00
|
|
|
$.ajax({
|
2015-10-13 22:37:56 +00:00
|
|
|
type: 'POST',
|
2012-04-26 04:05:27 +00:00
|
|
|
cache: false,
|
2013-09-21 23:39:42 +00:00
|
|
|
url: drupalSettings.statistics.url,
|
|
|
|
data: drupalSettings.statistics.data
|
2012-04-26 04:05:27 +00:00
|
|
|
});
|
|
|
|
});
|
2017-05-19 22:12:53 +00:00
|
|
|
})(jQuery, Drupal, drupalSettings);
|