mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-01 16:44:05 +08:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
$(function () {
|
|
|
|
$('.notification').click(function () {
|
|
$(this).fadeOut(100);
|
|
});
|
|
|
|
// Dropdown toggles
|
|
$('[data-dropdown]').dropDown();
|
|
|
|
}); |