
| Current Path : /var/www/html/ift/web/themes/contrib/adaptivetheme/at_core/scripts/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/ift/web/themes/contrib/adaptivetheme/at_core/scripts/at.StatusMessages.js |
/**
* @file
* Remove empty markup when status messages are empty.
*/
(function ($) {
"use strict";
Drupal.behaviors.atStatusMessages = {
attach: function () {
var sm = $('*[data-drupal-messages]');
// Remove if there is only one active region & status messages is empty.
if (sm.parents('.arc--1').length && !$.trim($(sm).html())) {
sm.parents('.l-pr').remove();
}
}
};
}(jQuery));