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
|
|
|
|
**/
|
|
|
|
|
2016-12-13 17:15:23 +00:00
|
|
|
if (window.jQuery) {
|
|
|
|
jQuery.noConflict();
|
|
|
|
}
|
|
|
|
|
|
|
|
document.documentElement.className += ' js';
|
|
|
|
|
2019-10-16 19:42:45 +00:00
|
|
|
(function (Drupal, drupalSettings) {
|
|
|
|
var domReady = function domReady(callback) {
|
2020-06-23 12:33:26 +00:00
|
|
|
var listener = function listener() {
|
|
|
|
callback();
|
|
|
|
document.removeEventListener('DOMContentLoaded', listener);
|
|
|
|
};
|
|
|
|
|
2019-10-16 19:42:45 +00:00
|
|
|
if (document.readyState !== 'loading') {
|
2020-06-25 14:23:25 +00:00
|
|
|
setTimeout(callback, 0);
|
2019-10-16 19:42:45 +00:00
|
|
|
} else {
|
|
|
|
document.addEventListener('DOMContentLoaded', listener);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
domReady(function () {
|
2017-05-19 22:12:53 +00:00
|
|
|
Drupal.attachBehaviors(document, drupalSettings);
|
|
|
|
});
|
2019-10-16 19:42:45 +00:00
|
|
|
})(Drupal, window.drupalSettings);
|