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