Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
18
web/core/modules/statistics/statistics.js
Normal file
18
web/core/modules/statistics/statistics.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/**
|
||||
* @file
|
||||
* Statistics functionality.
|
||||
*/
|
||||
|
||||
(function ($, Drupal, drupalSettings) {
|
||||
|
||||
'use strict';
|
||||
|
||||
$(document).ready(function () {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
cache: false,
|
||||
url: drupalSettings.statistics.url,
|
||||
data: drupalSettings.statistics.data
|
||||
});
|
||||
});
|
||||
})(jQuery, Drupal, drupalSettings);
|
Reference in a new issue