2015-09-03 17:51:10 +02:00
|
|
|
$(function () {
|
|
|
|
|
2015-09-03 20:05:45 +02:00
|
|
|
// Notification hiding
|
2015-09-03 17:51:10 +02:00
|
|
|
$('.notification').click(function () {
|
|
|
|
$(this).fadeOut(100);
|
2015-09-04 18:16:58 +02:00
|
|
|
|
2015-09-03 17:51:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Dropdown toggles
|
|
|
|
$('[data-dropdown]').dropDown();
|
|
|
|
|
2015-09-03 20:05:45 +02:00
|
|
|
// Chapter page list toggles
|
|
|
|
$('.chapter-toggle').click(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
$(this).toggleClass('open');
|
|
|
|
$(this).closest('.book-child').find('.inset-list').slideToggle(180);
|
|
|
|
});
|
|
|
|
|
2015-09-03 17:51:10 +02:00
|
|
|
});
|