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