mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2024-11-10 02:33:25 +00:00
10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
(function ($) {
|
|
$(document).ready(function() {
|
|
$.ajax({
|
|
type: "POST",
|
|
cache: false,
|
|
url: Drupal.settings.statistics.url,
|
|
data: Drupal.settings.statistics.data
|
|
});
|
|
});
|
|
})(jQuery);
|