mirror of
https://github.com/e107inc/e107.git
synced 2025-07-28 10:20:45 +02:00
14 lines
202 B
JavaScript
14 lines
202 B
JavaScript
|
|
/* Legacy Theme v1.x compat when bootstrap not in use */
|
|
|
|
// (function ($)
|
|
|
|
|
|
$('.s-message a.close').on('click', function ()
|
|
{
|
|
|
|
$(this).parent('.s-message').hide('slow');
|
|
}
|
|
);
|
|
|