12345678910111213141516171819202122 |
- (function () {
-
- const settingsElement = document.querySelector('head > script[type="application/json"][data-drupal-selector="drupal-settings-json"], body > script[type="application/json"][data-drupal-selector="drupal-settings-json"]');
-
- window.drupalSettings = {};
- if (settingsElement !== null) {
- window.drupalSettings = JSON.parse(settingsElement.textContent);
- }
- }());
|