2015-08-06 10:01:02 +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-08-06 10:01:02 +00:00
|
|
|
|
|
|
|
(function () {
|
2015-11-05 11:25:02 +00:00
|
|
|
var 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"]');
|
2015-08-06 10:01:02 +00:00
|
|
|
|
|
|
|
window.drupalSettings = {};
|
|
|
|
|
|
|
|
if (settingsElement !== null) {
|
|
|
|
window.drupalSettings = JSON.parse(settingsElement.textContent);
|
|
|
|
}
|
2017-05-19 22:12:53 +00:00
|
|
|
})();
|